For the complete documentation index, see llms.txt. This page is also available as Markdown.

Logo

Use to manage tenant logo files.

Deprecated
get

Retrieve the base64 logo file. This endpoint is deprecated and will be removed in a future release. Use GET /api/v1/branding/settings/logo instead.

Authorizations
AuthorizationstringRequired

Bearer authentication

Responses
200

Tenant logo (PNG or SVG).

application/json
logostringRequired
get/api/v1/logo
GET /api/v1/logo HTTP/1.1
Host: app.run.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "logo": "text"
}
Deprecated
post

Use to upload a base64 logo file (PNG or SVG). Max size 128kb. This endpoint is deprecated and will be removed in a future release. Use PUT /api/v1/branding/settings/logo instead.

Authorizations
AuthorizationstringRequired

Bearer authentication

Body
logostring · min: 1 · max: 500000Required

Base64 logo file

Responses
200

Logo uploaded.

No content

post/api/v1/logo
POST /api/v1/logo HTTP/1.1
Host: app.run.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 15

{
  "logo": "text"
}

No content

Last updated