Skip to main content
DELETE
/
identities
/
{identity_uid}
Delete a identity from the workspace with UID
curl --request DELETE \
  --url https://api.edges.run/v1/identities/{identity_uid} \
  --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}', 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}"

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

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

print(response.text)
{}

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

Response

Identity successfully removed.

The response is of type GenericResponse_of_NoData · object.