API Key Delete
DELETE/api/v1/apikey/:apikey_id/delete
Delete a specific API key.
Request​
Path Parameters
apikey_id stringrequired
The UUID4 identifier associated with this API Key.
Responses​
- 200
- 404
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
success Success (boolean)
Default value: true
{
"success": true
}
Not Found
- application/json
- Schema
- Example (from schema)
Schema
- MOD1
- MOD2
apikey_idobjectrequired
anyOf
string
string
error Error (string)required
message Message (string)required
{
"apikey_id": "string",
"error": "string",
"message": "string"
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
Schema
error Error (string)required
message Message (string)
Default value: An internal error occurred.
{
"error": "string",
"message": "An internal error occurred."
}
Loading...