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.delete(request={
"email": "user@syllable.ai",
"reason": "User left the organization",
})
# Handle response
print(res)
"<any>"
Delete a user.
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.delete(request={
"email": "user@syllable.ai",
"reason": "User left the organization",
})
# Handle response
print(res)
"<any>"
Request model to delete a user.
Successful Response
The response is of type any
.