Api referenceTemplates
List templates
Lists the organization's templates with their active version. Required scope: templates:read.
Authorization
apiKey AuthorizationBearer <token>
Renduo API key sent as Authorization: Bearer rnd_live_XXXXXXXXXXXX (or rnd_test_... in test mode). See GET /v1/auth/me.
In: header
Response Body
application/json
curl -X GET "https://example.com/v1/templates"{ "templates": [ { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "slug": "string", "name": "string", "activeVersion": 0, "createdAt": "2019-08-24T14:15:22Z" } ], "total": 0}Authenticated account context GET
Returns the context of the authenticated organization — used by `renduo whoami`.
Register a template version POST
Registers a new template (or a new version of an existing one if the slug already exists). multipart/form-data with "slug", "name" fields and the "bundle" file (IIFE compiled with esbuild). Required scope: templates:write.