GET v2/api/users/{id}/api-credentials

Returns the list of API credentials associated with the specified user. Only the Administrator who created the specified user or the user themselves can call this method, otherwise 403:Forbidden is returned.

Request Information

Parameters

NameDescriptionAdditional information
id
The identifier of the target user.

Define this parameter in the request URI.

Response Information

A list of API Credentials associated with the specified user is returned. This end-point can only be called by the Administrator who created the specified user or the specified user themselves, otherwise a 403:Forbidden is returned. If the user is not known a 404:NotFound is returned.

Response body formats

application/json, text/json

Sample:
[
  {
    "Id": "79e1ad1a-ac27-4c84-8855-c605f5873772",
    "Enabled": true,
    "Created": "2024-04-26T19:18:13.4865539+00:00"
  },
  {
    "Id": "79e1ad1a-ac27-4c84-8855-c605f5873772",
    "Enabled": true,
    "Created": "2024-04-26T19:18:13.4865539+00:00"
  },
  {
    "Id": "79e1ad1a-ac27-4c84-8855-c605f5873772",
    "Enabled": true,
    "Created": "2024-04-26T19:18:13.4865539+00:00"
  }
]