{ "title": "Create Workflow Example", "description": "Example request and response for creating a new Shuffle security automation workflow", "request": { "method": "POST", "url": "https://shuffler.io/api/v1/workflows", "headers": { "Authorization": "Bearer YOUR_API_KEY_HERE", "Content-Type": "application/json" }, "body": { "name": "Phishing Alert Response", "description": "Automated response workflow for phishing alerts: extract IOCs, check threat intel, isolate endpoint, and create JIRA ticket" } }, "response": { "status": 200, "headers": { "Content-Type": "application/json" }, "body": { "id": "wf-new123-abc456", "name": "Phishing Alert Response", "description": "Automated response workflow for phishing alerts: extract IOCs, check threat intel, isolate endpoint, and create JIRA ticket", "status": "draft", "org_id": "org-mycompany-001", "created": 1746201600000, "edited": 1746201600000, "actions": [], "triggers": [], "tags": [] } } }