API Reference

StitchFlow API

REST endpoints over HTTPS with bearer-token auth. JSON in, JSON out. Pagination via ?cursor=, rate-limited per workspace.

v1.0
REST + GraphQL
OAuth 2.0
Webhooks signed (HMAC-SHA256)
GET/v1/orders
List customer orders synced from Printavo.

Response 200

[{ "id":"o1","invoiceNo":"INV-10421","status":"ready_for_po" }]
GET/v1/orders/{id}
Fetch a single order with line items.
POST/v1/orders/{id}/sync
Force re-sync from Printavo.
Authentication
curl https://api.stitchflow.co/v1/pos \
  -H "Authorization: Bearer sk_live_••••" \
  -H "Content-Type: application/json"