Skip to main content
GET
/
apps
/
{client_id}
/
branding
curl -H "Authorization: Bearer sk_workspace_test_..." \
  "https://sandbox.api.hopae.com/connect/v1/apps/abc123/branding"
{ "name": "My App", "logo": "iVBORw0KGgoAAAANSUhEUgAA..." }
Returns branding for the specified app.

Request

Authorization
string
required
Bearer <API_KEY> from Console > Developers > Workspace API Keys.

Path parameters

client_id
string
required
Client identifier of the app.

Response

name
string
Brand name shown to users.
Logo image encoded as base64 (no data URI prefix).
curl -H "Authorization: Bearer sk_workspace_test_..." \
  "https://sandbox.api.hopae.com/connect/v1/apps/abc123/branding"
{ "name": "My App", "logo": "iVBORw0KGgoAAAANSUhEUgAA..." }