List API keys
Allows you to retrieve the list of API keys that belong to your account.
Query parameters
-
account_id string
the id of the account to get API keys for
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"
}