TEMPLATES

List templates

Returns a page of templates in the API key's workspace (default 50, max 100). If `hasMore` is true, request the next page with `offset`. Use names and descriptions to pick a template, then fetch its schema.

get/api/v1/templates

Returns a page of templates in the API key's workspace (default 50, max 100). If hasMore is true, request the next page with offset. Use names and descriptions to pick a template, then fetch its schema.

Authorization

AuthorizationBearer <token>

API key as Authorization: Bearer <key>

In: header

Query Parameters

project?string

Filter by project ID

Formatuuid
limit?integer

Page size (default 50, max 100)

Range1 <= value <= 100
Default50
offset?integer

Number of templates to skip

Range0 <= value
Default0

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/api/v1/templates"
{  "templates": [    {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "name": "string",      "description": "string",      "projectId": "5a8591dd-4039-49df-9202-96385ba3eff8",      "projectName": "string",      "updatedAt": "2019-08-24T14:15:22Z"    }  ],  "limit": 0,  "offset": 0,  "hasMore": true}