# Retrieve Client Identifier Details Template

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

This is a convenience resource useful for building maintenance user interface screens for client applications. The template data returned consists of any or all of:

 Field Defaults
 Allowed description Lists


Example Request:
clients/1/identifiers/template

## 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/template' \
  -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/retrieveTemplateClientIdentifier
