tenants_tenants_create_admin_group_create
POST/api/v3//tenants/tenants/:tenant_uuid/create_admin_group/
Create admin group and add user to it.
Request
Path Parameters
tenant_uuid uuidrequired
A UUID string identifying this Tenant.
- application/json
Body
required
user stringrequired
Possible values: non-empty
Responses
- 204
- 400
- 403
- 404
Group created successfully.
Bad request
- application/json
- Schema
- Example (from schema)
Schema
detail stringrequired
code string
{
"detail": "string",
"code": "string"
}
User not found
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L '/api/v3/tenants/tenants/:tenant_uuid/create_admin_group/' \
-H 'Content-Type: application/json' \
-d '{
"user": "string"
}'