List API Keys

Warning: This API has been deprecated. Please contact us to move to the latest Authentication system and transition to using Service Accounts.

GET /api-keys/

Retrieves all APIKeys in the org.

Required Permissions

ApiKeys:Read

Request Example

Sample request

curl "/api-keys/" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <TOKEN>"

Response

Response example

Note the token is only returned on the initial call to CreateAPIKey.

{
  "items": [
    {
      "id": "api-cat-freddie-a150fe2ce0",
      "name": "My API Key",
      "orgId": "cu-purple-pip-1b417b958500",
      "status": "Active",
      "authorId": "ce-finch-march-5b59fcbb571b",
      "dateCreated": "2022-09-01T09:06:32.567Z"
    },
    ...
  ]
}

Last updated