Skip to main content

tenants_domains_partial_update

PATCH 

/api/v3//tenants/domains/:id/

Domain ViewSet

Request

Path Parameters

    id integerrequired

    A unique integer value identifying this Domain.

Body

    domain string

    Possible values: non-empty and <= 253 characters

    is_primary boolean
    tenant uuid

Responses

Schema

    id integerrequired
    domain stringrequired

    Possible values: <= 253 characters

    is_primary boolean
    tenant uuidrequired
curl -L -X PATCH '/api/v3/tenants/domains/:id/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"domain": "string",
"is_primary": true,
"tenant": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}'
Request Collapse all
Base URL
/api/v3
Parameters
— pathrequired
Body
{
  "domain": "string",
  "is_primary": true,
  "tenant": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}