Revokes all S3 credentials belonging to a specific user. You can use the POST /user/list endpoint to look up the ID of the user whose credentials you want to revoke.
Endpoint
POST /user/revoke_credentials
Request structure
{
"id": "uuid"
}
| Parameter | Type | Description |
|---|---|---|
| id | UUID | The UUID of the user whose S3 credentials you are revoking. |
Response structure
Not applicable.
Return codes
|
Status code |
HTTP name |
Description |
|---|---|---|
| 200 | OK | The request was executed successfully. |
| 400 | Bad Request | User ID is not valid. |
| 401 | Unauthorized | Access was denied because credentials are not valid. |
| 404 | Not Found | The user ID was not found. |
| 405 | Method Not Allowed | The specified HTTP method is not allowed for user data. Resend using POST. |