Skip to main content
DELETE
/
api
/
v1
/
voice_groups
/
{voice_group_id}
Python (SDK)
import os
from syllable_sdk import SyllableSDK


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

    res = ss_client.voice_groups.delete(voice_group_id=225046, reason="<value>")

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

Authorizations

Syllable-API-Key
string
header
required

Path Parameters

voice_group_id
integer
required

Query Parameters

reason
string
required

Response

Successful Response

The response is of type any.

I