Delete Key
Delete a key associated to a user
Path Parameters
- user_id integer required
ID of the user
- key_id integer required
ID of the key
Responses
- 200
- 401
- 403
- 404
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema array
- id integer
Key ID
- created date-time
creation date
- name string
key name
- token string
The token
[
{
"id": 1,
"created": "2023-11-02",
"name": "This is my key",
"token": "f9bf78b9a18ce6d46a0cd2b0b86df9da"
}
]
User is not authenticated. This means token is either not present or invalid
User is not authorized to delete this key
User or key was not found
Something is wrong with the API.
Loading...