GroupIntegratedIMPGetRequest23
Bases: OCIRequest
Get the Integrated IMP service attributes for the group. The response is either GroupIntegratedIMPGetResponse23 or ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupIntegratedIMPGetRequest23. The response contains the group Integrated IMP service attributes.
The following elements are only returned to a reseller administrator or above:
useServiceProviderMessagingServer
provisioningUrl
provisioningUserId
Attributes:
use_service_provider_setting (bool):
service_domain (Optional[str]):
effective_service_domain (Optional[str]):
add_service_provider_in_imp_user_id (bool):
default_imp_id_type (str):
use_service_provider_messaging_server (Optional[bool]):
provisioning_url (Optional[str]):
provisioning_user_id (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
126933 126934 126935 126936 126937 126938 126939 126940 126941 126942 126943 126944 126945 126946 126947 126948 126949 126950 126951 126952 126953 126954 126955 126956 126957 126958 126959 126960 126961 126962 126963 126964 126965 126966 126967 126968 126969 126970 126971 126972 126973 126974 126975 126976 126977 126978 126979 126980 126981 126982 126983 126984 126985 126986 126987 126988 126989 126990 126991 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupIntegratedIMPGetRequest23
client = Client()
command = GroupIntegratedIMPGetRequest23(
service_provider_id=...,
group_id=...,
)
response = client.command(command)
print(response)