Skip to main content

tenants_tenants_update

PUT 

/api/v3//tenants/tenants/:tenant_uuid/

Tenant Viewset

Request

Path Parameters

    tenant_uuid uuidrequired

    A UUID string identifying this Tenant.

Body

required

    schema_name stringrequired

    Possible values: non-empty and <= 63 characters

    name stringrequired

    Possible values: non-empty

    ready boolean

Responses

Schema

    tenant_uuid uuidrequired
    schema_name stringrequired

    Possible values: <= 63 characters

    name stringrequired
    ready boolean
curl -L -X PUT '/api/v3/tenants/tenants/:tenant_uuid/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"schema_name": "string",
"name": "string",
"ready": true
}'
Request Collapse all
Base URL
/api/v3
Parameters
— pathrequired
Body required
{
  "schema_name": "string",
  "name": "string",
  "ready": true
}