stages_authenticator_validate_destroy
DELETE/api/v3//stages/authenticator/validate/:stage_uuid/
AuthenticatorValidateStage Viewset
Request
Path Parameters
stage_uuid uuidrequired
A UUID string identifying this Authenticator Validation Stage.
Responses
- 204
- 400
- 403
No response body
- application/json
- Schema
- Example (from schema)
Schema
non_field_errors string[]
code string
property name* any
Validation Error
{
"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/stages/authenticator/validate/:stage_uuid/' \
-H 'Authorization: Bearer <TOKEN>'