Delete an existing user
DELETE/api/v1/mssp/:mssp-id/user/:username
x-public: "true"
Delete an existing user
Request
Path Parameters
username stringrequired
Username of the user
mssp-id stringrequired
the id of the MSSP of interest
Responses
- 204
- 400
- 401
- 404
- 429
User deleted successful
Bad request. One of the required arguments is missing or fails a constraint
- application/json
- Schema
- Example (from schema)
Schema
error objectrequired
code stringrequired
message stringrequired
target string
details undefined[]
{
"error": {
"code": "string",
"message": "string",
"target": "string",
"details": [
null
]
}
}
Authentication error
- application/json
- Schema
- Example (from schema)
Schema
error objectrequired
code stringrequired
message stringrequired
target string
details undefined[]
{
"error": {
"code": "string",
"message": "string",
"target": "string",
"details": [
null
]
}
}
User not found
- application/json
- Schema
- Example (from schema)
Schema
error objectrequired
code stringrequired
message stringrequired
target string
details undefined[]
{
"error": {
"code": "string",
"message": "string",
"target": "string",
"details": [
null
]
}
}
Too many requests
Loading...