← Back to docs

Quickstart

Get your first SyncToScale workflow running in minutes. This guide walks through authentication, triggering a run, and checking results.

POST Trigger workflows or send data
GET Check status or retrieve results

What you’ll need

Authentication

Authorization: Bearer YOUR_API_KEY

Run a workflow

POST /workflows/run
{
  "workflow_id": "wf_12345",
  "payload": {
    "event": "new_hire_created",
    "employee_id": "E-1042"
  }
}

Check run status

GET /runs/run_abc123