{ "opencollection": "1.0.0", "info": { "name": "Boltic Gateway Certificates Workflows API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Workflows", "type": "folder" }, "items": [ { "info": { "name": "Boltic List all workflows", "type": "http" }, "http": { "method": "GET", "url": "https://gateway.boltic.io/v1/workflows", "params": [ { "name": "page", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" }, { "name": "status", "value": "", "type": "query" } ] }, "docs": "Retrieve a paginated list of all workflows in the workspace." }, { "info": { "name": "Boltic Create a new workflow", "type": "http" }, "http": { "method": "POST", "url": "https://gateway.boltic.io/v1/workflows", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new automation workflow with triggers, actions, and configuration." }, { "info": { "name": "Boltic Get a workflow by ID", "type": "http" }, "http": { "method": "GET", "url": "https://gateway.boltic.io/v1/workflows/:workflowId", "params": [ { "name": "workflowId", "value": "", "type": "path" } ] }, "docs": "Retrieve the full configuration and status of a specific workflow." }, { "info": { "name": "Boltic Update a workflow", "type": "http" }, "http": { "method": "PUT", "url": "https://gateway.boltic.io/v1/workflows/:workflowId", "params": [ { "name": "workflowId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update the configuration of an existing workflow." }, { "info": { "name": "Boltic Delete a workflow", "type": "http" }, "http": { "method": "DELETE", "url": "https://gateway.boltic.io/v1/workflows/:workflowId", "params": [ { "name": "workflowId", "value": "", "type": "path" } ] }, "docs": "Boltic Delete a workflow" }, { "info": { "name": "Boltic Execute a workflow", "type": "http" }, "http": { "method": "POST", "url": "https://gateway.boltic.io/v1/workflows/:workflowId/execute", "params": [ { "name": "workflowId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Trigger immediate execution of a workflow. Supports synchronous execution that waits for the workflow to complete before returning a response." }, { "info": { "name": "Boltic Activate a workflow", "type": "http" }, "http": { "method": "POST", "url": "https://gateway.boltic.io/v1/workflows/:workflowId/activate", "params": [ { "name": "workflowId", "value": "", "type": "path" } ] }, "docs": "Enable a workflow so it responds to triggers." }, { "info": { "name": "Boltic Deactivate a workflow", "type": "http" }, "http": { "method": "POST", "url": "https://gateway.boltic.io/v1/workflows/:workflowId/deactivate", "params": [ { "name": "workflowId", "value": "", "type": "path" } ] }, "docs": "Disable a workflow so it stops responding to triggers." } ] } ], "bundled": true }