TypeScript
import { Kombo } from "@kombo-api/sdk"; const kombo = new Kombo({ api_key: "<YOUR_BEARER_TOKEN_HERE>", }); async function run() { const result = await kombo.general.deleteIntegration({ integration_id: "<id>", body: {}, }); console.log(result); } run();
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?