Automate via the API
Log in, hold a bearer token, page through results, handle errors.
- Get a token
Access tokens live ~15 minutes; refresh tokens renew them (Authentication).POST /api/auth/login { "username_or_email": "…", "password": "…" } - Call v2 endpoints with
Authorization: Bearer <token>. Prefer the v2 surface — every response uses the standard envelope (Errors):{ data, meta: { request_id, timestamp }, error }. - Page deterministically: list responses wrap items with
total/page/per_page/pages; passper_pageexplicitly rather than relying on defaults (20). - Retry correctly: back off on 429/5xx, never blind-retry 4xx; log
meta.request_idfor support. - Webhooks instead of polling? See Webhooks & Triggers — HMAC signatures let you verify Flowmanner's calls.
Last updated 2026-08-25 (git-derived)