Delete a mutual authentication session
DELETE/:handle/sig/:session_id
Deletes the session linked to the mutual authentication
Request
Path Parameters
handle stringrequired
Org handle
session_id stringrequired
Session ID
Responses
- 200
- 400
- 404
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
data object
success boolean
{
"data": {},
"success": true
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
data integer[]
detail string
Human-friendly description that can be shown to the user.
error_code string
error_id string
Only present in case of internal errors (status 500 or 502)
{
"data": [
0
],
"detail": "string",
"error_code": "string",
"error_id": "string"
}
Not Found
- application/json
- Schema
- Example (from schema)
Schema
data integer[]
detail string
Human-friendly description that can be shown to the user.
error_code string
error_id string
Only present in case of internal errors (status 500 or 502)
{
"data": [
0
],
"detail": "string",
"error_code": "string",
"error_id": "string"
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
Schema
data integer[]
detail string
Human-friendly description that can be shown to the user.
error_code string
error_id string
Only present in case of internal errors (status 500 or 502)
{
"data": [
0
],
"detail": "string",
"error_code": "string",
"error_id": "string"
}
Loading...