Delete an association of policy group from tenant group
DELETE/api/v1/mssp/:mssp-id/tenant-group-policy-group-mapping/:mapping-id
x-public: "true"
Deletes a policy group association from a tenant group. Will use msspId from the auth token if available.
Request
Path Parameters
mapping-id uuidrequired
the id of the policy group to tenant group mapping. You can get this from tenantGroups[x].id of the policy group response.
Example: 52017d1a-d665-4187-8675-33ee1ac5b365
mssp-id stringrequired
the mssp the policy group belongs to
Example: e91b486a-e139-4d3b-a9dd-959fd5cffb10
Responses
- 204
- 400
- 401
- 403
- 429
Delete Accepted
Response Headers
Location string
The relative path to the deleted tenant group to policy group mapping
Bad Request
- 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
]
}
}
Unauthorized
- 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
]
}
}
Forbidden
- 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
- 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
]
}
}
Loading...