GET - Group Voice Messaging

Retrieves The Groups Advanced Voice Messaging Service Settings

Parameters

  • service_provider_id (str): Service Provider/Enterprise ID where Group is located.

  • group_id (str): Group ID where the target Group is located.

Returns

  • Dict: Advanced Voice Messaging

How To Use:

my_api.voice_messaging.get_group_voice_messaging(
    "ServiceProviderID",
    "GroupID",
)

Example Data Returned (Formatted)

{
  "useMailServerSetting": "System Mail Server",
  "warnCallerBeforeRecordingVoiceMessage": false,
  "allowUsersConfiguringAdvancedSettings": true,
  "allowComposeOrForwardMessageToEntireGroup": false,
  "mailServerProtocol": "POP3",
  "realDeleteForImap": false,
  "maxMailboxLengthMinutes": 30,
  "doesMessageAge": false,
  "holdPeriodDays": 15,
  "serviceProviderId": "odin.mock.ent1",
  "groupId": "odin.mock.grp1"
}

Last updated

Was this helpful?