Delete API key

DELETE /api/api_keys/{id}

Allows you to delete an API key, in case it needs to be rotated.

Path parameters

  • id string Required

    the ID of the API Key to delete

Responses

  • No content

  • Unauthorized

    Hide response attribute Show response attribute object
    • error string

      Human readable version of the error status code

  • Not found

    Hide response attribute Show response attribute object
    • error string

      Human readable version of the error status code

DELETE /api/api_keys/{id}
curl \
 -X DELETE http://localhost:4000/api/api_keys/{id}
Response examples (401)
{
  "error": "Error Reason"
}
Response examples (401)
{
  "error": "Error Reason"
}
Response examples (404)
{
  "error": "Error Reason"
}
Response examples (404)
{
  "error": "Error Reason"
}