Release 2026-07-07
This release introduces a new theme retrieval endpoint for account branding, allowing configured branding themes to be accessed directly through the Getpaid API.
With the new theme endpoint, platforms and sellers can retrieve the themes configured for an account without additional lookups, making it easier to load and apply branding settings consistently across client-facing experiences.
Theme retrieval endpoint
The new themes endpoint returns the branding themes configured for an account, making theme discovery available directly through the Getpaid API.
Platforms can retrieve themes they own, as well as any themes associated with their sellers. Theme creation was already supported; this endpoint closes the theme discoverability gap by allowing platforms to load existing branding settings without additional lookups or manual tracking.
See the API reference for the full response schema.
{
"themes": [
{
"id": "thm_4jkgtzffbf9pzem7dgfhdeztwa",
"name": "Default Titan Auto Parts GmbH",
"settings": {
"logo": {
"id": "doc_4wt0wrfqwz0vkatave0fkjg046",
"content_type": "image/png",
"url": "https://example.com/logo.png"
},
"business": {
"legal_name": "Titan Auto Parts GmbH",
"trading_name": "Titan Auto"
},
"colors": {
"primary": "#05495c",
"secondary": "#e07b7b"
}
},
"is_default": true,
"created_at": "2026-02-03T10:00:00.000Z",
"updated_at": "2026-02-03T10:00:00.000Z"
}
]
}
The response shape matches the account themes resource and includes the default theme marker, uploaded logo details, business metadata, and configured brand colors. This enables platforms to apply account and seller branding consistently across client-facing experiences.