> For the complete documentation index, see [llms.txt](https://dev.guardian.hedera.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dev.guardian.hedera.com/static-spec-test/customization/branding.md).

# Branding

## Returns branding configuration.

> Returns current branding configuration.

```json
{"openapi":"3.0.0","info":{"title":"Guardian","version":"0.0.1"},"tags":[{"name":"branding"}],"servers":[{"url":"/api/v1","description":"version 1.0"}],"paths":{"/branding":{"get":{"description":"Returns current branding configuration.","operationId":"BrandingApi_getBranding","parameters":[],"responses":{"200":{"description":"Successful operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BrandingDTO"}}}},"500":{"description":"Internal server error.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/InternalServerErrorDTO"}}}}},"summary":"Returns branding configuration.","tags":["branding"]}}},"components":{"schemas":{"BrandingDTO":{"type":"object","properties":{"headerColor":{"type":"string"},"primaryColor":{"type":"string"},"companyName":{"type":"string"},"companyLogoUrl":{"type":"string"},"loginBannerUrl":{"type":"string"},"faviconUrl":{"type":"string"},"headerColor1":{"type":"string"},"termsAndConditions":{"type":"string"},"useCustomMenuColors":{"type":"boolean"},"useSolidBackground":{"type":"boolean"}},"required":["headerColor","primaryColor","companyName","companyLogoUrl","loginBannerUrl","faviconUrl","headerColor1","termsAndConditions","useCustomMenuColors","useSolidBackground"]},"InternalServerErrorDTO":{"type":"object","properties":{"statusCode":{"type":"number"},"message":{"type":"string"}},"required":["statusCode","message"]}}}}
```

## Update branding.

> Update branding. Only users with the Standard Registry role are allowed to make the request.

```json
{"openapi":"3.0.0","info":{"title":"Guardian","version":"0.0.1"},"tags":[{"name":"branding"}],"servers":[{"url":"/api/v1","description":"version 1.0"}],"security":[{"bearer":[]}],"components":{"securitySchemes":{"bearer":{"type":"http","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"BrandingDTO":{"type":"object","properties":{"headerColor":{"type":"string"},"primaryColor":{"type":"string"},"companyName":{"type":"string"},"companyLogoUrl":{"type":"string"},"loginBannerUrl":{"type":"string"},"faviconUrl":{"type":"string"},"headerColor1":{"type":"string"},"termsAndConditions":{"type":"string"},"useCustomMenuColors":{"type":"boolean"},"useSolidBackground":{"type":"boolean"}},"required":["headerColor","primaryColor","companyName","companyLogoUrl","loginBannerUrl","faviconUrl","headerColor1","termsAndConditions","useCustomMenuColors","useSolidBackground"]},"UnauthorizedErrorDTO":{"type":"object","properties":{"statusCode":{"type":"number"},"message":{"type":"string"}},"required":["statusCode","message"]},"ForbiddenErrorDTO":{"type":"object","properties":{"statusCode":{"type":"number"},"message":{"type":"string"},"error":{"type":"string"}},"required":["statusCode","message"]},"InternalServerErrorDTO":{"type":"object","properties":{"statusCode":{"type":"number"},"message":{"type":"string"}},"required":["statusCode","message"]}}},"paths":{"/branding":{"post":{"description":"Update branding. Only users with the Standard Registry role are allowed to make the request.","operationId":"BrandingApi_setBranding","parameters":[],"requestBody":{"required":true,"description":"Object that contains config.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BrandingDTO"}}}},"responses":{"204":{"description":"Branding updated successfully. No response body."},"401":{"description":"Unauthorized request.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UnauthorizedErrorDTO"}}}},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ForbiddenErrorDTO"}}}},"500":{"description":"Internal server error.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/InternalServerErrorDTO"}}}}},"summary":"Update branding.","tags":["branding"]}}}}
```
