tenants_tenants_partial_update
PATCH/api/v3//tenants/tenants/:tenant_uuid/
Tenant Viewset
Request
Path Parameters
tenant_uuid uuidrequired
A UUID string identifying this Tenant.
- application/json
Body
schema_name string
Possible values: non-empty
and <= 63 characters
name string
Possible values: non-empty
ready boolean
Responses
- 200
- 400
- 403
- application/json
- Schema
- Example (from schema)
Schema
tenant_uuid uuidrequired
schema_name stringrequired
Possible values: <= 63 characters
name stringrequired
ready boolean
{
"tenant_uuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"schema_name": "string",
"name": "string",
"ready": true
}
- application/json
- Schema
- Example (from schema)
Schema
non_field_errors string[]
code string
{
"non_field_errors": [
"string"
],
"code": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
detail stringrequired
code string
{
"detail": "string",
"code": "string"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X PATCH '/api/v3/tenants/tenants/:tenant_uuid/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"schema_name": "string",
"name": "string",
"ready": true
}'