GET v1/clients/{id}/keys
Retrieves all client keys for a client by their id
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Client Id for Keys requested. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
The List of client keys, if it exists. Otherwise a 404 error.
Collection of ClientKey| Name | Description | Type | Additional information |
|---|---|---|---|
| Key | globally unique identifier |
None. |
|
| Description | string |
None. |
|
| LastAccessedUtc | date |
None. |
Response Codes
- 200 OK: Requested client keys successfully returned.
- 401 Unauthorized:
- 404 NotFound: Requested client does not exist.
- 500 InternalServerError:
Response Formats
application/json, text/json
Sample:
[
{
"Key": "b3b8d94c-67b1-4afd-a50f-4bfdfbe1c06b",
"Description": "sample string 2",
"LastAccessedUtc": "2025-12-11T17:07:48.1558675Z"
},
{
"Key": "b3b8d94c-67b1-4afd-a50f-4bfdfbe1c06b",
"Description": "sample string 2",
"LastAccessedUtc": "2025-12-11T17:07:48.1558675Z"
}
]
text/html
Sample:
[{"Key":"b3b8d94c-67b1-4afd-a50f-4bfdfbe1c06b","Description":"sample string 2","LastAccessedUtc":"2025-12-11T17:07:48.1558675Z"},{"Key":"b3b8d94c-67b1-4afd-a50f-4bfdfbe1c06b","Description":"sample string 2","LastAccessedUtc":"2025-12-11T17:07:48.1558675Z"}]
application/xml, text/xml
Sample:
<ArrayOfClientKey xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ITAGroup.TaxValidation.Api.Contracts.v1.Models">
<ClientKey>
<Description>sample string 2</Description>
<Key>b3b8d94c-67b1-4afd-a50f-4bfdfbe1c06b</Key>
<LastAccessedUtc>2025-12-11T11:07:48.1558675-06:00</LastAccessedUtc>
</ClientKey>
<ClientKey>
<Description>sample string 2</Description>
<Key>b3b8d94c-67b1-4afd-a50f-4bfdfbe1c06b</Key>
<LastAccessedUtc>2025-12-11T11:07:48.1558675-06:00</LastAccessedUtc>
</ClientKey>
</ArrayOfClientKey>