Authorizations
Response
Directory downloaded successfully
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.directory.directory_member_download()
# Handle response
print(res)"<any>"Download the entire directory as a JSON file.
import os
from syllable_sdk import SyllableSDK
with SyllableSDK(
api_key_header=os.getenv("SYLLABLESDK_API_KEY_HEADER", ""),
) as ss_client:
res = ss_client.directory.directory_member_download()
# Handle response
print(res)"<any>"Directory downloaded successfully
The response is of type any.