{ "opencollection": "1.0.0", "info": { "name": "Unisson agent-evals tasks API", "version": "1.0.0" }, "items": [ { "info": { "name": "tasks", "type": "folder" }, "items": [ { "info": { "name": "Get Task Analytics", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v1/tasks/analytics", "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get analytics data for the organization's tasks." }, { "info": { "name": "List Tasks", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v1/tasks", "params": [ { "name": "page", "value": "", "type": "query" }, { "name": "page_size", "value": "", "type": "query" }, { "name": "status_filter", "value": "", "type": "query" }, { "name": "severity_filter", "value": "", "type": "query" }, { "name": "can_resolve_filter", "value": "", "type": "query" }, { "name": "customer_id", "value": "", "type": "query" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "List all tasks for the organization with pagination and filters." }, { "info": { "name": "Create Task", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/tasks", "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Create a new task. The chat agent drafts an execution plan in the\nbackground (in the conversation that will later execute it), which sets\ncan_resolve + plan_steps and links the conversation for approval." }, { "info": { "name": "Get Task", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v1/tasks/:task_id", "params": [ { "name": "task_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get a specific task by ID." }, { "info": { "name": "Update Task", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/api/v1/tasks/:task_id", "params": [ { "name": "task_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Update a task. Manual status moves follow the transition policy in\n_MANUAL_MOVE_MESSAGES and notify the executing conversation so the agent\nreacts (stop / continue / wrap up) — the board and the chat stay in sync." }, { "info": { "name": "Delete Task", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/v1/tasks/:task_id", "params": [ { "name": "task_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Soft-delete a task." }, { "info": { "name": "Approve Task", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/tasks/:task_id/approve", "params": [ { "name": "task_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Approve a scheduled task: create a conversation that autonomously executes\nits plan (scoped to the primary agent + the task's customer) and link it back." } ] } ], "bundled": true }