Branding Detail - Updates brand details

Updates the existing details of a brand based on the provided schema.

put
Authorizations
Query parameters
versionstringOptional

The requested API version

Default: 1.0
Body

Class for storing information about branding.

brandNamestring | nullableOptional

A public property of type string that has both a getter and a setter method, which allows for getting and setting the value of the BrandName property.

base64Stringstring | nullableOptional

A public property of type string that has both a getter and a setter method, which allows for getting and setting the value of the Base64String property.

imageExtensionstring | nullableOptional

A public property of type string that has both a getter and a setter method, which allows for getting and setting the value of the ImageExtension property.

copyrightValuestring | nullableOptional

A public property of type string that has both a getter and a setter method, which allows for getting and setting the value of the CopyrightText property.

privacyPolicystring | nullableOptional

A public property of type string that has both a getter and a setter method, which allows for getting and setting the value of the PrivacyPolicyUrl property.

headerColorstring | nullableOptional

A public property of type string that has both a getter and a setter method, which allows for getting and setting the value of the HeaderColor property.

headerTextColorstring | nullableOptional

A public property of type string that has both a getter and a setter method, which allows for getting and setting the value of the HeaderFontColor property.

leftNavColorstring | nullableOptional

A public property of type string that has both a getter and a setter method, which allows for getting and setting the value of the LeftNavColor property.

leftNavTextColorstring | nullableOptional

A public property of type string that has both a getter and a setter method, which allows for getting and setting the value of the LeftNavFontColor property.

Responses
200
Success: Brand details updated successfully.
put
PUT /branding HTTP/1.1
Host: 
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 207

{
  "brandName": "text",
  "base64String": "text",
  "imageExtension": "text",
  "copyrightValue": "text",
  "privacyPolicy": "text",
  "headerColor": "text",
  "headerTextColor": "text",
  "leftNavColor": "text",
  "leftNavTextColor": "text"
}
{
  "brandName": "text",
  "logoUrl": "text",
  "imageExtension": "text",
  "copyrightValue": "text",
  "privacyPolicy": "text",
  "headerColor": "text",
  "headerTextColor": "text",
  "leftNavColor": "text",
  "leftNavTextColor": "text"
}

Last updated