Resources
Integration recipes
End-to-end scenarios for mobile login, web signing, and document review.
Mobile app login (v2)
GET /api/health/check(optional)POST /api/v2/identification/same-devicewithaction: loginand claims- Extract flow id from
data - Poll
POST /api/v2/flow/pingevery 2s - Create your app session from returned claims
- On cancel →
POST /api/v2/flow/cancel
Web cross-device sign (v2)
POST /api/v2/signing/different-devicewithaction: sign+ webhook- Show waiting UI
- Track via SSE or ping loop
- Process webhook at
reference - Finalize order server-side
- On browser close → cancel flow
Document review (v2)
POST /api/v2/document/reviewwith signees + PDF URL + webhook- Monitor ping/SSE
- Process webhook events per signee
- If stalled →
POST /api/v2/document/refresh
Legacy v1 web identification
Only for existing integrations:
GET /api/v1/flow/authorize— savex-access-tokenPOST /api/v1/identification/different-devicePOST /api/v1/flow/pollinguntil complete
New projects should use v2 or OIDC.