# Retrieve a Client Identifier

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

Example Requests:
clients/1/identifier/2


clients/1/identifier/2?template=true

clients/1/identifiers/2?fields=documentKey,documentType,description

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

## Responses
- `200`: OK

## Response fields
- `clientId` (integer)
- `description` (string)
- `documentKey` (string)
- `documentType` (GetClientsDocumentType)
- `id` (integer)

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

## Example response
```json
{
  "clientId": 1,
  "description": "Issued in the year 2--7",
  "documentKey": "12345",
  "documentType": {
    "id": 3,
    "name": "Drivers License"
  }
}
```

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