pasbydocs
Concepts

Scopes

API scopes that control which identification, signing, flow, and document endpoints your app can call.

Each pasby app is provisioned with scopes. Scopes gate which endpoints you may call and which device patterns are available.

Configure scopes in the pasby console. Request only what your integration needs.

Scope map

ScopeEndpoint
identification:sameIdentification — same device
identification:anotherIdentification — different device
identification:wildcardIdentification — wildcard
signing:samePOST /api/v2/signing/same-device
signing:anotherPOST /api/v2/signing/different-device
signing:wildcardPOST /api/v2/signing/wildcard
document:signDocument signingsigning, review, refresh
flow:pingPOST /api/v2/flow/ping
flow:cancelPOST /api/v2/flow/cancel

Legacy v1 also exposes flow:authorize and flow:poll — see Migration v1 → v2.

Scope enforcement happens in Console and the pasby backend when your app calls the API.

Actions vs scopes

Flow actions (login, sign, …) describe what the user does. Scopes describe which APIs your app may call. Both must align for a successful integration.

On this page