DELETE
/
v1
/
connections
/
{connectorId}
/
{ownerId}
const options = {
  method: 'DELETE',
  headers: {'x-api-key': '<api-key>', 'x-api-secret': '<api-key>'}
};

fetch('https://api.runmorph.dev/v1/connections/{connectorId}/{ownerId}', options)
  .then(response => response.json())
  .then(response => console.log(response))
  .catch(err => console.error(err));
{}

Authorizations

x-api-key
string
header
required
x-api-secret
string
header
required

Path Parameters

connectorId
required
Available options:
hubspot,
pipedrive,
salesforce,
aircall,
gong,
attio,
dialpad,
calendly
ownerId
string
required

Response

204
application/json

No Content

The response is of type object.