Skip to main content
DELETE
/
identities
/
{identity_uid}
/
integrations
/
{integration}
Disconnect a user from a specific integration.
curl --request DELETE \
  --url https://api.edges.run/v1/identities/{identity_uid}/integrations/{integration} \
  --header 'X-API-Key: <api-key>'
const options = {method: 'DELETE', headers: {'X-API-Key': '<api-key>'}};

fetch('https://api.edges.run/v1/identities/{identity_uid}/integrations/{integration}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://api.edges.run/v1/identities/{identity_uid}/integrations/{integration}"

headers = {"X-API-Key": "<api-key>"}

response = requests.delete(url, headers=headers)

print(response.text)
{}
When the integration is deleted successfully, Edges posts to your workspace integration webhook (if you configured one under Developer settings). The payload uses event_type: "integration" and event: "DELETED" so you can tear down local state or stop workflows tied to that identity and integration. For the full JSON shape and other event values, see LinkedIn integration webhooks — Setup process.

Authorizations

X-API-Key
string
header
required

API key required for authentication. Add your API key in the X-API-Key header.

Path Parameters

identity_uid
string<uuid>
required
integration
string
required

Response

Successfully deleted the requested account.

The response is of type GenericResponse_of_NoData · object.