List configuration templates
Returns the active platform configuration templates available to your account, paginated. Each item is a summary; fetch a single template to get its full definition.
Required scope: intelligence:read
Query Parameters
- Type: string · Cursornullablecursor
Pagination cursor from a previous response's
next_cursor. Omit for the first page. - Type: integer · Limitlimitmin:1max:100
Maximum number of templates to return (1–100, default 20).
Responses
- application/json
- application/json
- application/json
Request Example for get/configuration-templates
curl https://api.simwood.com/intelligence/v1/configuration-templates \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"items": [
{
"id": 1,
"name": "string",
"description": "string",
"version": 1,
"created_at": "string",
"updated_at": "string"
}
],
"next_cursor": "string"
}