# Retrieve client address template

`GET /lokta-lms/api/v1/client/addresses/template`

## Responses
- `default`: default response

## Response fields
- `addressId` (integer)
- `addressLine1` (string)
- `addressLine2` (string)
- `addressLine3` (string)
- `addressType` (string)
- `addressTypeId` (integer)
- `addressTypeIdOptions` (array of CodeValueData)
- `city` (string)
- `clientID` (integer)
- `countryId` (integer)
- `countryIdOptions` (array of CodeValueData)
- `countryName` (string)
- `countyDistrict` (string)
- `createdBy` (string)
- `createdOn` (string)
- `isActive` (boolean)
- `latitude` (number)
- `longitude` (number)
- `postalCode` (string)
- `stateName` (string)
- `stateProvinceId` (integer)
- `stateProvinceIdOptions` (array of CodeValueData)
- `street` (string)
- `townVillage` (string)
- `updatedBy` (string)
- `updatedOn` (string)

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

## Example response
```json
{
  "addressId": 1,
  "addressLine1": "string",
  "addressLine2": "string",
  "addressLine3": "string"
}
```

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