import os
from syllable_sdk import SyllableSDK
with SyllableSDK(
api_key_header=os.getenv("SYLLABLESDK_API_KEY_HEADER", ""),
) as ss_client:
res = ss_client.insights.tools.delete(tool_id=770449)
# Handle response
print(res)
"<any>"
Delete an Insights tool configuration.
import os
from syllable_sdk import SyllableSDK
with SyllableSDK(
api_key_header=os.getenv("SYLLABLESDK_API_KEY_HEADER", ""),
) as ss_client:
res = ss_client.insights.tools.delete(tool_id=770449)
# Handle response
print(res)
"<any>"
Successful Response
The response is of type any
.