Authorizations
Body
application/x-www-form-urlencoded
Comments explaining the deletion
Response
Successful Response
The response is of type any
.
import os
from syllable_sdk import SyllableSDK
with SyllableSDK(
api_key_header=os.getenv("SYLLABLESDK_API_KEY_HEADER", ""),
) as ss_client:
res = ss_client.organizations.delete()
# Handle response
print(res)
"<any>"
Delete the current organization and all its users.
import os
from syllable_sdk import SyllableSDK
with SyllableSDK(
api_key_header=os.getenv("SYLLABLESDK_API_KEY_HEADER", ""),
) as ss_client:
res = ss_client.organizations.delete()
# Handle response
print(res)
"<any>"
Comments explaining the deletion
Successful Response
The response is of type any
.