GET/api/rest/brand-templates
List all brand templates for the authenticated user.
Parameters
NameTypeDescription
querystringFilter by template title
continuationstringPagination token
ownershipstringany, owned, shared
sortBystringrelevance, modified_descending, etc.
datasetstringany, non_empty, empty
forceSyncbooltrue to force sync from Canva
cacheOnlybooltrue to use only cache
Request Example
GET /api/rest/brand-templates?query=MyTemplate Authorization: Bearer YOUR_API_TOKEN
Response Example
{ "items": [ { "id": "string", "title": "string", "view_url": "string", "create_url": "string", "created_at": 1234567890, "updated_at": 1234567890, "thumbnail": { "url": "string", "width": 100, "height": 100 }, "dataset": { "field": { "type": "string" } }, "cache": { "lastSyncAt": "ISODate", "isFromCache": true } } ], "continuation": "string", "meta": { "source": "cache", "totalFromCache": 1, "totalFromCanva": 0 } }