List configurations
Returns your account's configurations, newest first and paginated. Each item is a summary (identity, version, active state, and derived sync_state); fetch a single configuration to get its resolved operators and actions. Follow next_cursor to page through the list.
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 items to return (1–100, default 20).
Responses
- application/json
- application/json
- application/json
Request Example for get/configurations
curl https://api.simwood.com/intelligence/v1/configurations \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"items": [
{
"uuid": "string",
"name": "string",
"description": "string",
"version": 1,
"template_id": 1,
"is_active": true,
"sync_state": "live",
"created_at": "string",
"updated_at": "string"
}
],
"next_cursor": "string"
}