GET v1/clients/{id}/keys

Retrieves all client keys for a client by their id

Request Information

URI Parameters

NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional 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": "fde4351f-0829-4d6b-97e3-59bcaa463b69",
    "Description": "sample string 2",
    "LastAccessedUtc": "2025-12-11T17:07:34.3076562Z"
  },
  {
    "Key": "fde4351f-0829-4d6b-97e3-59bcaa463b69",
    "Description": "sample string 2",
    "LastAccessedUtc": "2025-12-11T17:07:34.3076562Z"
  }
]

text/html

Sample:
[{"Key":"fde4351f-0829-4d6b-97e3-59bcaa463b69","Description":"sample string 2","LastAccessedUtc":"2025-12-11T17:07:34.3076562Z"},{"Key":"fde4351f-0829-4d6b-97e3-59bcaa463b69","Description":"sample string 2","LastAccessedUtc":"2025-12-11T17:07:34.3076562Z"}]

application/xml, text/xml

Sample:
<ArrayOfClientKey xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ITAGroup.Games.Api.Contracts.v1.Models">
  <ClientKey>
    <Description>sample string 2</Description>
    <Key>fde4351f-0829-4d6b-97e3-59bcaa463b69</Key>
    <LastAccessedUtc>2025-12-11T11:07:34.3076562-06:00</LastAccessedUtc>
  </ClientKey>
  <ClientKey>
    <Description>sample string 2</Description>
    <Key>fde4351f-0829-4d6b-97e3-59bcaa463b69</Key>
    <LastAccessedUtc>2025-12-11T11:07:34.3076562-06:00</LastAccessedUtc>
  </ClientKey>
</ArrayOfClientKey>