core_users_destroy
DELETE/api/v3//core/users/:id/
User Viewset
Request
Path Parameters
id integerrequired
A unique integer value identifying this User.
Responses
- 204
- 400
- 403
No response body
- application/json
- Schema
- Example (from schema)
Schema
non_field_errors string[]
code string
{
"non_field_errors": [
"string"
],
"code": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
detail stringrequired
code string
{
"detail": "string",
"code": "string"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X DELETE '/api/v3/core/users/:id/' \
-H 'Authorization: Bearer <TOKEN>'