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
  • cursor
    Type: string · Cursornullable

    Pagination cursor from a previous response's next_cursor. Omit for the first page.

  • limit
    Type: integer · Limit
    min:  
    1
    max:  
    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"
}