Endpoints Overview
All endpoints are under the base URL https://getnextstep.io/api/v1.
Every request must include an Authorization: Bearer nxs_live_... header.
Process Templates
Templates are the blueprints for your processes.
| Method | Path | Description |
|---|---|---|
| GET | /process-templates | List all templates |
| GET | /process-templates/:id | Get a single template |
| GET | /process-templates/:id/tasks | List tasks in a template |
Process Runs
Runs are active or completed instances of a template.
| Method | Path | Description |
|---|---|---|
| GET | /process-runs | List runs |
| POST | /process-runs | Create a new run |
| GET | /process-runs/:id | Get a single run |
| GET | /process-runs/:id/tasks | List tasks in a run |
Tasks
Update tasks within a running process instance.
| Method | Path | Description |
|---|---|---|
| GET | /process-runs/:id/tasks/:taskId | Get a task |
| PATCH | /process-runs/:id/tasks/:taskId | Update a task |
Last updated on