GET
/api/admin/brandingAdminList branding asset slots
Lists every white-label branding asset slot (favicon, app icon, ...) with its upload constraints and, when an administrator uploaded a custom asset, its metadata. The assets themselves are served publicly at /branding/{asset}.
operationId
get_api_admin_brandingAdministrationAuthentication & permissionsAdmin
Platform administrators only
- Accepted credentials
- Auth server session (refresh token cookie)
cookie "refresh_token_<auth_server_app_id>" - Access token (cookie)
cookie "access_token_<auth_server_app_id>" - Access token (Bearer)
Authorization: Bearer <JWT>
- Auth server session (refresh token cookie)
- Who may call
- Platform administrators only
Responses
application/json
| Property | Type | Description |
|---|---|---|
| success* | true | |
| data* | object | |
| assets* | BrandingAssetMetadataRecord[] | |
| key* | string | |
| label* | string | |
| description* | string | |
| allowedContentTypes* | string[] | |
| maxSizeBytes* | integer | Upload limit in raw bytes |
| recommendedDimensions* | string | |
| hasCustomAsset* | boolean | Whether an administrator uploaded a custom asset for this slot |
| contentType* | string | null | null | |
| contentHash* | string | null | null | SHA-256 hex digest of the uploaded bytes (null when using the default) |
| sizeBytes* | number | null | null | |
| updatedAt* | number | null | null | Unix epoch milliseconds |
| updatedBy* | string | null | null | uid of the administrator who uploaded it |
JSONExample
"success"true
"data"
"assets"
Example request
bashcurl
curl -X GET 'https://auth.schemavaults.com/api/admin/branding' \
-b 'refresh_token_<auth_server_app_id>=<value>'