List API keys

GET /api/api_keys

Allows you to retrieve the list of API keys that belong to your account.

Query parameters

  • the id of the account to get API keys for

Responses

  • OK

    Hide response attribute Show response attribute object
    • data array[object]

      API Keys of the Account

      Hide data attribute Show data attribute object
      • api_key string

        A string used to authenticate a Account

  • Unauthorized

    Hide response attribute Show response attribute object
    • error string

      Human readable version of the error status code

GET /api/api_keys
curl \
 -X GET http://localhost:4000/api/api_keys
Response examples (200)
{
  "data": [
    {
      "api_key": "my-api-key"
    }
  ]
}
Response examples (200)
{
  "data": [
    {
      "api_key": "my-api-key"
    }
  ]
}
Response examples (401)
{
  "error": "Error Reason"
}
Response examples (401)
{
  "error": "Error Reason"
}