Company logoTrust Center Documentation
API v1 Reference/Brand/Logo

Upload brand logo

Upload a new logo file for the tenant brand. Replaces any existing logo. Supports JPEG, PNG, SVG, GIF, and WebP formats with maximum size of 100KB.

PUT
/api/v1/brand/logo
AuthorizationBearer <token>

In: header

logoFilefile

Logo image file to upload (max 100KB)

Formatbinary

Response Body

const body = new FormData();
body.set(logoFile, "string")

fetch("https://app.orbiqhq.com/api/v1/brand/logo", {
  body
})
{
  "success": true,
  "data": {
    "message": "Logo updated successfully.",
    "url": "https://app.orbiqhq.com/assets/abc123"
  }
}
{
  "error": "string",
  "examples": null
}
Empty
Empty
{
  "error": "Failed to upload file to storage."
}

How is this guide?