# Create an Identifier for a Client

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

Mandatory Fields
documentKey, documentTypeId

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

## Request body (application/json)
- `description` (string)
- `documentKey` (string)
- `documentTypeId` (integer)
- `status` (string)

## Responses
- `200`: OK

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

## Example request (cURL)
```bash
curl -X POST \
  'http://localhost:8080/lokta-lms/api/v1/clients/{clientId}/identifiers' \
  -u '{username}:{password}' \
  -H 'Tenant-Identifier: default' \
  -H 'Content-Type: application/json' \
  -d '{
  "description": "Document has been verified",
  "documentKey": "KA-54677",
  "documentTypeId": 1,
  "status": "Active"
}'
```

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

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