# Delete a Client Identifier

`DELETE /lokta-lms/api/v1/clients/{clientId}/identifiers/{identifierId}`

Deletes a Client Identifier

## Parameters
- `clientId` (path, integer, required): clientId
- `identifierId` (path, integer, required): identifierId

## Responses
- `200`: OK

## Response fields
- `clientId` (integer)
- `officeId` (integer)
- `resourceId` (integer)

## Example request (cURL)
```bash
curl -X DELETE \
  'http://localhost:8080/lokta-lms/api/v1/clients/{clientId}/identifiers/{identifierId}' \
  -u '{username}:{password}' \
  -H 'Tenant-Identifier: default'
```

## Example response
```json
{
  "clientId": 1,
  "officeId": 1,
  "resourceId": 3
}
```

Interactive: https://developer.lokta.ai/reference.html#operation/deleteClientIdentifier
