Squillo · Example Payload

Squillo List Workflows Example

Integration PlatformAutomationWorkflowNo-CodeIT Process AutomationSoftware As A Utility

Squillo List Workflows 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": "List Workflows",
  "operation": "listWorkflows",
  "request": {
    "method": "GET",
    "url": "https://api.squillo.io/v1/workflows?status=active&page=1&limit=20",
    "headers": {
      "Authorization": "Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...",
      "Content-Type": "application/json"
    }
  },
  "response": {
    "status": 200,
    "contentType": "application/json",
    "body": {
      "workflows": [
        {
          "id": "wf-abc123",
          "name": "Employee Onboarding Automation",
          "description": "Automates new employee setup across HR, IT, and facilities systems",
          "status": "active",
          "createdAt": "2026-03-01T09:00:00Z",
          "updatedAt": "2026-04-15T14:30:00Z",
          "tags": ["HR", "Onboarding", "IT"],
          "trigger": {
            "type": "event",
            "config": {
              "eventType": "employee.created",
              "source": "workday"
            }
          }
        },
        {
          "id": "wf-def456",
          "name": "Monthly Invoice Processing",
          "description": "Processes invoices from email and routes to accounting",
          "status": "active",
          "createdAt": "2026-01-10T10:00:00Z",
          "updatedAt": "2026-04-28T08:00:00Z",
          "tags": ["Finance", "Invoicing"],
          "trigger": {
            "type": "schedule",
            "config": {
              "cron": "0 9 1 * *",
              "timezone": "America/New_York"
            }
          }
        }
      ],
      "total": 12,
      "page": 1,
      "limit": 20
    }
  }
}