{ "opencollection": "1.0.0", "info": { "name": "Unisson agent-evals products API", "version": "1.0.0" }, "items": [ { "info": { "name": "products", "type": "folder" }, "items": [ { "info": { "name": "List Products", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v1/products", "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "List all products for the organization." }, { "info": { "name": "Create Product", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/products", "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Create a new product." }, { "info": { "name": "Get Product", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v1/products/:product_id", "params": [ { "name": "product_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get a single product." }, { "info": { "name": "Update Product", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/api/v1/products/:product_id", "params": [ { "name": "product_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Update a product." }, { "info": { "name": "Delete Product", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/v1/products/:product_id", "params": [ { "name": "product_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Soft-delete a product, cascade-soft-delete its KB entries (features,\ncompany knowledge, agent insights), and unlink it from any agents. The\ndefault product cannot be deleted." } ] } ], "bundled": true }