import os
from syllable_sdk import SyllableSDK
with SyllableSDK(
api_key_header=os.getenv("SYLLABLESDK_API_KEY_HEADER", ""),
) as ss_client:
res = ss_client.v1.users_delete_account()
# Handle response
print(res)
"<any>"
Request removal of the account of the user calling this endpoint. Intended for removing trial accounts.
import os
from syllable_sdk import SyllableSDK
with SyllableSDK(
api_key_header=os.getenv("SYLLABLESDK_API_KEY_HEADER", ""),
) as ss_client:
res = ss_client.v1.users_delete_account()
# Handle response
print(res)
"<any>"
Successful Response
The response is of type any
.