GroupAutoAttendantDeleteInstanceRequest
Bases: OCIRequest
Delete a Auto Attendant instance from a group.
If UnassignPhoneNumbersLevel is set to 'Group', the user's primary phone number, fax number and any alternate numbers, will be unassigned from the group if the command is executed by a service provider administrator or above.
When set to 'Service Provider', they will be unassigned from the group and service provider if the command is executed by a provisioning administrator or above.
When omitted, the number(s) will be left assigned to the group.
An ErrorResponse with the type warning will be returned if any number cannot be unassigned because of insufficient privilege.
The response is either SuccessResponse or ErrorResponse.
Attributes:
service_user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupAutoAttendantDeleteInstanceRequest
client = Client()
command = GroupAutoAttendantDeleteInstanceRequest(
service_user_id=...,
)
response = client.command(command)
print(response)