Skip to main content
DELETE /api/v1/forward/identities/{identity_id} Deletes an Identity by marking it deleted. Historical sessions, events, and audit records are not cascade-deleted.

Headers

HeaderRequiredDescription
AuthorizationYesBearer <PAT>

Path parameters

ParameterTypeRequiredDescription
identity_idstringYesForward Identity ID.

Example request

curl -s -X DELETE 'https://api.qoder.com/api/v1/forward/identities/idn_019eabc123' \
  -H "Authorization: Bearer $QODER_PAT"

Example response

HTTP 200 OK
{
  "id": "idn_019eabc123",
  "deleted": true
}

Response fields

FieldTypeDescription
idstringDeleted Identity ID.
deletedbooleanWhether the Identity was marked deleted.

Errors

HTTPTypeTrigger
401authentication_errorPAT invalid or expired.
404not_found_errorIdentity does not exist or is not visible to the caller.
409conflict_errorIdentity cannot be deleted in its current state.

Notes

  • Deleted identities cannot be used to create new sessions.
  • Delete is currently implemented as a soft delete.

List identities

Create an identity