Skip to main content

core_brands_partial_update

PATCH 

/api/v3//core/brands/:brand_uuid/

Brand Viewset

Request

Path Parameters

    brand_uuid uuidrequired

    A UUID string identifying this Brand.

Body

    domain string

    Possible values: non-empty

    Domain that activates this brand. Can be a superset, i.e. a.b for aa.b and ba.b

    default boolean
    branding_title string

    Possible values: non-empty

    branding_logo string

    Possible values: non-empty

    branding_favicon string

    Possible values: non-empty

    flow_authentication uuidnullable
    flow_invalidation uuidnullable
    flow_recovery uuidnullable
    flow_unenrollment uuidnullable
    flow_user_settings uuidnullable
    flow_device_code uuidnullable
    web_certificate uuidnullable

    Web Certificate used by the authentik Core webserver.

    attributes

Responses

Schema

    brand_uuid uuidrequired
    domain stringrequired

    Domain that activates this brand. Can be a superset, i.e. a.b for aa.b and ba.b

    default boolean
    branding_title string
    branding_logo string
    branding_favicon string
    flow_authentication uuidnullable
    flow_invalidation uuidnullable
    flow_recovery uuidnullable
    flow_unenrollment uuidnullable
    flow_user_settings uuidnullable
    flow_device_code uuidnullable
    web_certificate uuidnullable

    Web Certificate used by the authentik Core webserver.

    attributes
curl -L -X PATCH '/api/v3/core/brands/:brand_uuid/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"domain": "string",
"default": true,
"branding_title": "string",
"branding_logo": "string",
"branding_favicon": "string",
"flow_authentication": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"flow_invalidation": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"flow_recovery": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"flow_unenrollment": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"flow_user_settings": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"flow_device_code": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"web_certificate": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"attributes": {}
}'
Request Collapse all
Base URL
/api/v3
Auth
Parameters
— pathrequired
Body
{
  "domain": "string",
  "default": true,
  "branding_title": "string",
  "branding_logo": "string",
  "branding_favicon": "string",
  "flow_authentication": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "flow_invalidation": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "flow_recovery": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "flow_unenrollment": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "flow_user_settings": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "flow_device_code": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "web_certificate": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "attributes": {}
}