# List all Identifiers for a Client

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

Example Requests:
clients/1/identifiers


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

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

## Responses
- `default`: default response

## Response fields
- `allowedDocumentTypes` (array of CodeValueData)
- `clientId` (integer)
- `description` (string)
- `documentKey` (string)
- `documentType` (CodeValueData)
- `id` (integer)
- `status` (string)

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

## Example response
```json
[
  {
    "allowedDocumentTypes": [],
    "clientId": 1,
    "description": "string",
    "documentKey": "string"
  }
]
```

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