PUT - User Voice Messaging Messages Read

Marks User Voice Messages As Read

Parameters

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

  • 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_messages_read(
    "UserID",
    "Updates"
)

Example Body Data (Formatted)

{
    "messages": [
        {
            "id": "726d5cba-1046-492e-b7ab-4abfa12fe2e5"
        },
        {
            "id": "f39e47f0-d75c-4095-9bd9-c33430665eb0"
        },
        {
            "id": "1c778318-b656-4d2f-a29b-ed50e4ebbcaf"
        }
    ]
}

Last updated

Was this helpful?