API KeysRate LimitingAuthenticationDeveloper PlatformAccess ControlIdentityAnalytics
Properties
Name
Type
Description
identity
string
The ID of the identity to delete. This can be either the externalId (from your own system that was used during identity creation) or the identityId (the internal ID returned by the identity service).
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/V2IdentitiesDeleteIdentityRequestBody",
"title": "V2IdentitiesDeleteIdentityRequestBody",
"type": "object",
"properties": {
"identity": {
"type": "string",
"minLength": 1,
"description": "The ID of the identity to delete. This can be either the externalId (from your own system that was used during identity creation) or the identityId (the internal ID returned by the identity service).",
"example": "user_123"
}
},
"additionalProperties": false,
"required": [
"identity"
]
}