Modify the tenant group by id
PATCH/api/v1/mssp/:mssp-id/tenant-group/:id
x-public: "true"
Modifies a tenant group by id.
Request
Path Parameters
mssp-id stringrequired
the mssp the managed tenants belong to
id uuidrequired
the id of the tenant group
- application/json
Body
required
groupName stringrequired
Possible values: >= 3 characters
and <= 63 characters
tenantIds string[]
Responses
- 200
- 404
- 429
OK
- application/json; charset=UTF-8
- Schema
- Example (from schema)
Schema
- Array [
- ]
id uuid
groupName string
tenants object[]
externalTenantId string
prismaId string
createdAt int64
createdBy string
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"groupName": "string",
"tenants": [
{
"externalTenantId": "string",
"prismaId": "string"
}
],
"createdAt": 0,
"createdBy": "string"
}
The MSSP does not exist
- 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
]
}
}
Rate limiting 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
]
}
}
Loading...