Skip to main content
DELETE
/
v2
/
identities
/
{id}
Core - Delete identity
curl --request DELETE \
  --url 'https://api.orq.ai/v2/identities/customer_12345' \
  --header 'Authorization: Bearer $ORQ_API_KEY'
import { Orq } from '@orq-ai/node';

const client = new Orq({
  apiKey: process.env.ORQ_API_KEY,
});

await client.identities.delete({
  id: 'customer_12345',
});
import os
from orq_ai_sdk import Orq

client = Orq(api_key=os.environ["ORQ_API_KEY"])

client.identities.delete(
    id="customer_12345",
)
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Identity ID to delete.

Response

200 - application/json

OK

The response is of type object.