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.
AuthorizationBearer <token>
In: header
logoFilefile
Logo image file to upload (max 100KB)
Format
binary
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?