GroupVoiceMessagingGroupGetVoicePortalBrandingRequest20
Bases: OCIRequest
Get the group's voice portal branding settings. The response is either a GroupVoiceMessagingGroupGetVoicePortalBrandingResponse20 or an ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupVoiceMessagingGroupGetVoicePortalBrandingRequest20.
Attributes:
voice_portal_greeting_selection (str):
voice_portal_greeting_file (Optional[AnnouncementFileKey]):
voice_messaging_greeting_selection (str):
voice_messaging_greeting_file (Optional[AnnouncementFileKey]):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupVoiceMessagingGroupGetVoicePortalBrandingRequest20
client = Client()
command = GroupVoiceMessagingGroupGetVoicePortalBrandingRequest20(
service_provider_id=...,
group_id=...,
)
response = client.command(command)
print(response)