Delete an Integration
DELETE
Delete by ID
https://api.moltin.com/v2/integrations/:id
Parameters
Path parameters
Name | Required | Type | Description |
---|---|---|---|
id | Required | string | The ID for the integration to delete. |
Headers
Name | Required | Type | Description |
---|---|---|---|
Authorization | Required | string | The Bearer token required to get access to the API. |
Request Example
Curl
curl -X DELETE https://api.moltin.com/v2/integrations/:id \
-H "Authorization: Bearer XXXX"
JavaScript SDK
const integrationId = "25617d3e-14a6-434c-bfab-3fda87517aaf";
// Where `EPCC` is an authenticated client
await EPCC.Integrations.Delete(integrationId);
Response Example
200 OK
{
"data": {
"type": "integration",
"id": "8cb9e689-ede7-4f6d-b61a-6aa970d572dd"
}
}