Serves a rebranding asset as binary data, with no authentication, so a
page can point an <img> straight at it. Branding is what a partner
already shows to its own customers on a login screen.
Rate-limited to 10 requests / 30s per client. The response carries an ETag and Last-Modified (conditional requests answer 304), and a Content-Security-Policy that neutralises an uploaded SVG.
GET
/public/rebranding/{org_id}/products/{product_id}/{asset}
curl \
--request GET 'https://api.your-domain.com/api/public/rebranding/{org_id}/products/nethvoice/{asset}'
Response examples (200)
# Headers
ETag: string
Cache-Control: public, max-age=300, must-revalidate
# Payload
@file
Response examples (400)
{
"code": 400,
"message": "validation failed",
"data": {
"type": "validation_error",
"errors": [
{
"key": "username",
"message": "required",
"value": "string"
}
]
}
}
Response examples (404)
{
"code": 400,
"message": "validation failed",
"data": {
"type": "validation_error",
"errors": [
{
"key": "username",
"message": "required",
"value": "string"
}
]
}
}