Squillo · Example Payload

Squillo Execute Workflow Example

Integration PlatformAutomationWorkflowNo-CodeIT Process AutomationSoftware As A Utility

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

Top-level fields

exampleoperationrequestresponse

Example Payload

Raw ↑
{
  "example": "Execute Workflow",
  "operation": "executeWorkflow",
  "request": {
    "method": "POST",
    "url": "https://api.squillo.io/v1/workflows/wf-abc123/execute",
    "headers": {
      "Authorization": "Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...",
      "Content-Type": "application/json"
    },
    "body": {
      "inputData": {
        "employeeId": "EMP-78901",
        "firstName": "Jane",
        "lastName": "Smith",
        "department": "Engineering",
        "startDate": "2026-05-15"
      }
    }
  },
  "response": {
    "status": 202,
    "contentType": "application/json",
    "body": {
      "id": "exec-xyz789",
      "workflowId": "wf-abc123",
      "status": "running",
      "startedAt": "2026-05-02T10:15:30Z",
      "completedAt": null,
      "triggeredBy": "manual"
    }
  }
}