Skip to content

place.stream.branding.getBlob

Lexicon Version: 1

Type: query

Get a specific branding asset blob by key.

Parameters:

NameTypeReq’dDescriptionConstraints
keystringBranding asset key (mainLogo, favicon, siteTitle, etc.)
broadcasterstringDID of the broadcaster. If not provided, uses the server’s default broadcaster.Format: did

Output:

  • Encoding: */*
  • Description: Raw blob data with appropriate content-type
  • Schema:

Schema not defined. Possible Errors:

  • BrandingNotFound: The requested branding asset does not exist

{
"lexicon": 1,
"id": "place.stream.branding.getBlob",
"defs": {
"main": {
"type": "query",
"description": "Get a specific branding asset blob by key.",
"parameters": {
"type": "params",
"required": ["key"],
"properties": {
"key": {
"type": "string",
"description": "Branding asset key (mainLogo, favicon, siteTitle, etc.)"
},
"broadcaster": {
"type": "string",
"format": "did",
"description": "DID of the broadcaster. If not provided, uses the server's default broadcaster."
}
}
},
"output": {
"encoding": "*/*",
"description": "Raw blob data with appropriate content-type"
},
"errors": [
{
"name": "BrandingNotFound",
"description": "The requested branding asset does not exist"
}
]
}
}
}