Python
from kombo import Kombo with Kombo( api_key="<YOUR_BEARER_TOKEN_HERE>", ) as k_client: res = k_client.general.delete_integration(integration_id="<id>", body={}) # Handle response print(res)
200
Example
{ "status": "<string>", "data": {}}
Delete the specified integration.
Create an API key on the Secrets page in the Kombo dashboard.
DELETE /integrations/:integration_id Parameter
DELETE /integrations/:integration_id Request body
The body is of type object.
object
DELETE /integrations/:integration_id Positive response
"success"
Was this page helpful?