Upgrade operator references to their current version

Repoints this configuration's pinned operator references to each operator's current version and bumps the configuration version. Send { "operators": ["name", ...] } to upgrade specific references, or { "all": true } to bring every reference current.

Required scope: intelligence:write

Path Parameters
  • uuid
    Type: string · Uuid
    required

    The configuration's stable uuid — unchanged across version bumps and edits.

Body·
required
application/json

Selects which operator references to repoint to their current version.

  • all
    Type: boolean · All

    Upgrade every operator reference in the configuration to current.

  • operators
    Type: array string[] | null · Operatorsnullable

    Names of the operator references to upgrade. Ignored when all is true.

Responses
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for post/configurations/{uuid}/upgrade-operators
curl 'https://api.simwood.com/intelligence/v1/configurations/{uuid}/upgrade-operators' \
  --request POST \
  --header 'Content-Type: application/json' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN' \
  --data '{
  "operators": [
    ""
  ],
  "all": false
}'
{
  "uuid": "string",
  "name": "string",
  "description": "string",
  "version": 1,
  "template_id": 1,
  "is_active": true,
  "sync_state": "live",
  "created_at": "string",
  "updated_at": "string",
  "operators": [
    {
      "name": "string",
      "version": 1,
      "current_version": 1,
      "upgrade_available": false,
      "output_type": "string",
      "model_tier": "string",
      "granularity": {
        "additionalProperty": "anything"
      },
      "context_window": 1,
      "include_prior_results": false,
      "prior_results_window": 3,
      "include_operator_results": [
        "string"
      ],
      "operator_results_window": 1,
      "parameters": {
        "additionalProperty": "anything"
      }
    }
  ],
  "actions": [
    {
      "additionalProperty": "anything"
    }
  ]
}