Skip to main content
GET
/
user
/
api-keys
Get User API Keys List
curl --request GET \
  --url https://relytone.data.cloud/api/v1/user/api-keys \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "key": "<string>",
    "fullKey": "<string>",
    "name": "<string>",
    "description": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "consumerId": "<string>",
    "consumerUsername": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successfully retrieved API keys list

id
string

API key unique identifier

key
string

API key (partially hidden)

fullKey
string

Full API key (only returned when creating)

name
string

API key name

description
string

API key description

createdAt
string<date-time>

Creation time

consumerId
string

Consumer ID

consumerUsername
string

Consumer username

I