Authorizations
Path Parameters
DELETE /integrations/:integration_id Parameter
Body
application/json · object
DELETE /integrations/:integration_id Request body
The body is of type object.
from kombo import SDK
with SDK(
api_key="<YOUR_BEARER_TOKEN_HERE>",
) as sdk:
res = sdk.general.delete_integration(integration_id="<id>", body={})
# Handle response
print(res){
"status": "<string>",
"data": {}
}Delete the specified integration. ⚠️ This can not be undone!
from kombo import SDK
with SDK(
api_key="<YOUR_BEARER_TOKEN_HERE>",
) as sdk:
res = sdk.general.delete_integration(integration_id="<id>", body={})
# Handle response
print(res){
"status": "<string>",
"data": {}
}DELETE /integrations/:integration_id Parameter
DELETE /integrations/:integration_id Request body
The body is of type object.
Was this page helpful?