DELETE
/
api
/
v1
/
custom_messages
/
{custom_message_id}
import os
from syllable_sdk import SyllableSDK


with SyllableSDK(
    api_key_header=os.getenv("SYLLABLESDK_API_KEY_HEADER", ""),
) as ss_client:

    res = ss_client.custom_messages.delete(custom_message_id=545907, reason="<value>")

    # Handle response
    print(res)
"<any>"

Authorizations

Syllable-API-Key
string
header
required

Path Parameters

custom_message_id
integer
required

Query Parameters

reason
string
required

Response

200
application/json
Successful Response

The response is of type any.