Shuffle · Example Payload

Shuffle Create Workflow Example

Example request and response for creating a new Shuffle security automation workflow

SecurityWorkflowsAutomationSOAROrchestrationOpen Source

Shuffle Create Workflow Example is an example object payload from Shuffle, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

titledescriptionrequestresponse

Example Payload

Raw ↑
{
  "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": []
    }
  }
}