PUT - User Voice Messaging User Distribution List

Modifies A Specific User Distribution List For Voice Messaging

Parameters

  • user_id (str): The User ID For The Voice Messaging Service Settings.

  • list_id (int): The Distribution List ID.

  • updates (dict): Formatted Data To Emplace In The Put Request.

Returns

  • None: This routine has no return type

How To Use:

my_api.voice_messaging.put_user_voice_messaging_user_distribution_list(
    "UserID",
    "ListID",
    "Updates"
)

Example Body Data (Formatted)

{
    "userId": "[email protected]",
    "listId": "0",
    "description": "description-0",
    "phoneNumbers": [
        "5133334001",
        "5133334002"
    ]
}

Last updated

Was this helpful?