GroupAccountAuthorizationCodesGetRequest
Bases: OCIRequest
Request the group's account/authorization codes setting. The response is either a GroupAccountAuthorizationCodesGetResponse or an ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to GroupAccountAuthorizationCodesGetRequest. The tables has the following column headings: "User Id", "Last Name", "First Name", "Hiragana Last Name", "Hiragana First Name", "Phone Number", "Extension", "Department", "Email Address".
Attributes:
type (str):
number_of_digits (int):
allow_local_and_toll_free_calls (bool):
mandatory_usage_user_table (OCITable):
optional_usage_user_table (OCITable):
Source code in src/mercury_ocip_fast/commands/commands.py
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import GroupAccountAuthorizationCodesGetRequest
client = Client()
command = GroupAccountAuthorizationCodesGetRequest(
service_provider_id=...,
group_id=...,
)
response = client.command(command)
print(response)