v2

latestOpenAPI 3.1.02026-07-31822441.6 KB

Fetch queued jobs

Returns queued jobs for a specific environment, flow, and user/tenant.

get/{env_id}/{flow}/{user_id}/jobs/queued

Path parameters

env_idstring required

ID of environment

flowstring required

ID of flow

user_idstring required

ID of user/tenant

Response

200

Example response

{
  "queued_jobs": [
    {
      "id": 101,
      "env_id": "test-env",
      "tenant_id": "tenant-123",
      "flow_id": "customer-sync",
      "status": "QUEUED",
      "created_at": "2026-01-02T03:04:05+00:00",
      "updated_at": "2026-01-02T03:05:06+00:00",
      "job_name": "Nightly customer sync",
      "override_start_date": "2026-01-01T00:00:00Z",
      "override_end_date": "2026-01-01T00:00:00Z",
      "override_selected_tables": {
        "customer": true,
        "orders": false
      },
      "override_env_vars": {
        "DEBUG": "true"
      },
      "override_lifecycle_webhook": {
        "url": "https://example.com",
        "secret": "some-secret"
      }
    }
  ]
}