GET
/
service_accounts
/
{clientId}
/
api_keys
List API keys for service account
curl --request GET \
  --url https://api.blaxel.ai/v0/service_accounts/{clientId}/api_keys \
  --header 'Authorization: Bearer <token>'
[
  {
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "createdBy": "<string>",
    "updatedBy": "<string>",
    "apiKey": "<string>",
    "expires_in": "<string>",
    "id": "<string>",
    "name": "<string>",
    "sub": "<string>",
    "sub_type": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

clientId
string
required

Client ID

Response

200 - application/json

successful operation

The response is of type object[].