Get a configuration template

Returns a single configuration template including its full definition — the pre-populated operators, granularities, and actions. Complete the open fields (at minimum the webhook_url on each action) and POST the document to configurations; the server never applies the definition for you.

Required scope: intelligence:read

Path Parameters
  • template_id
    Type: integer · Template Id
    required

    The numeric identifier of the configuration template.

Responses
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for get/configuration-templates/{template_id}
curl https://api.simwood.com/intelligence/v1/configuration-templates/1 \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "id": 1,
  "name": "string",
  "description": "string",
  "version": 1,
  "created_at": "string",
  "updated_at": "string",
  "definition": {
    "additionalProperty": "anything"
  }
}