requests, flows, and companies. These routes are still served for backward compatibility but are no longer part of the main API list above.
They use the same base URL and the same Bearer-token authentication as the current API:
Endpoint mapping
Each previous-version route has a direct equivalent in the current API. Request bodies, query filters, and per-item response shapes are identical — see the current endpoint for the full schema and the interactive “Try It” tool.Forms (previously requests)
Form Templates (previously flows)
Workspaces (previously companies)
Key differences
Apart from the path, the only behavioral change is in the list endpoints.
- List responses are not paginated. The previous list routes (
GET /requests,GET /flows,GET /companies) return a bare JSON array. The current routes wrap results in a pagination envelope ({ "meta": { ... }, "data": [ ... ] }). - Resource naming. The previous routes use the older resource names —
requests(now forms),flows(now form templates), andcompanies(now workspaces). The shape of each item is otherwise unchanged.
GET /responses/{id}, GET /attachments/{id}, and GET /signatures/{id} are documented in their own sections above and are not part of the previous API version.