Skip to main content
PATCH
/
apps
/
{client_id}
/
branding
curl -X PATCH \
  -H "Authorization: Bearer sk_workspace_test_..." \
  -H "Content-Type: application/json" \
  -d '{"name":"New Brand","logo":"iVBORw0KGgoAAAANSUhEUgAA..."}' \
  "https://sandbox.api.hopae.com/connect/v1/apps/abc123/branding"
{ "name": "New Brand", "logo": "iVBORw0KGgoAAAANSUhEUgAA..." }
Replaces branding details for an app.

Request

Authorization
string
required
Bearer <API_KEY> from Console > Developers > Workspace API Keys.
Content-Type
string
application/json

Path parameters

client_id
string
required
Client identifier of the app.

Request body

name
string
Brand name shown to users.
Logo image encoded as base64 (no data URI prefix).

Response

Returns the updated branding.
curl -X PATCH \
  -H "Authorization: Bearer sk_workspace_test_..." \
  -H "Content-Type: application/json" \
  -d '{"name":"New Brand","logo":"iVBORw0KGgoAAAANSUhEUgAA..."}' \
  "https://sandbox.api.hopae.com/connect/v1/apps/abc123/branding"
{ "name": "New Brand", "logo": "iVBORw0KGgoAAAANSUhEUgAA..." }