GroupGetRequest22V5
Bases: OCIRequest
Get the profile for a group. The response is either a GroupGetResponse22V5 or an ErrorResponse.
The following elements are only used in AS data mode and ignored in XS data mode:
groupExternalId
Attributes:
service_provider_id (Optional[str]):
group_id (Optional[str]):
group_external_id (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupGetRequest22V5. The response contains the group's profile information. The following elements are not returned in AS and XS data mode: servicePolicy, callProcessingSliceId, provisioningSliceId, subscriberPartition, preferredDataCenter.
The following elements are only used in XS data mode and not
returned in AS data mode:
preferredDataCenter.
The following data elements are only used in AS data mode and not returned
in XS data mode:
resellerId,
groupExternalId.
The following elements are only used in XS data mode and not returned
in AS data mode:
defaultUserCallingLineIdPhoneNumber.
Attributes:
default_domain (str):
user_limit (int):
user_count (int):
group_name (Optional[str]):
calling_line_id_name (Optional[str]):
calling_line_id_phone_number (Optional[str]):
calling_line_id_display_phone_number (Optional[str]):
time_zone (str):
time_zone_display_name (str):
location_dialing_code (Optional[str]):
contact (Optional[Contact]):
address (Optional[StreetAddress]):
service_policy (Optional[str]):
call_processing_slice_id (Optional[str]):
provisioning_slice_id (Optional[str]):
subscriber_partition (Optional[str]):
preferred_data_center (Optional[str]):
reseller_id (Optional[str]):
default_user_calling_line_id_phone_number (Optional[str]):
service_provider_id (str):
group_id (str):
group_external_id (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
126324 126325 126326 126327 126328 126329 126330 126331 126332 126333 126334 126335 126336 126337 126338 126339 126340 126341 126342 126343 126344 126345 126346 126347 126348 126349 126350 126351 126352 126353 126354 126355 126356 126357 126358 126359 126360 126361 126362 126363 126364 126365 126366 126367 126368 126369 126370 126371 126372 126373 126374 126375 126376 126377 126378 126379 126380 126381 126382 126383 126384 126385 126386 126387 126388 126389 126390 126391 126392 126393 126394 126395 126396 126397 126398 126399 126400 126401 126402 126403 126404 126405 126406 126407 126408 126409 126410 126411 126412 126413 126414 126415 126416 126417 126418 126419 126420 126421 126422 126423 126424 126425 126426 126427 126428 126429 126430 126431 126432 126433 126434 126435 126436 126437 126438 126439 126440 126441 126442 126443 126444 126445 126446 126447 126448 126449 126450 126451 126452 126453 126454 126455 126456 126457 126458 126459 126460 126461 126462 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupGetRequest22V5
client = Client()
command = GroupGetRequest22V5(
service_provider_id=...,
group_id=...,
group_external_id=...,
)
response = client.command(command)
print(response)