Sandbox scenarios
Sandbox scenarios are stable examples you can run while building your Collate integration. Each scenario creates a predictable authorization lifecycle so you can test your code before sending live prior-authorization traffic.
Scenarios use the same public Prior Auth API resources as production:
Authorization.status, Authorization.nextAction, requirements, submissions,
outcomes, files, final approval, and manual handoffs.
Scenarios do not call live payer portals, use real payer credentials, or expose internal Collate test endpoints. They are available only in sandbox:
Get the scenario catalog
Fetch the catalog to see the scenarios available to your organization:
Each scenario includes:
- a stable
id - production-shaped
create.providerNpi,create.request,create.policy, andcreate.answers - the requirements, documents, or confirmations the scenario may ask for
- the statuses, next actions, and outcomes your client should expect
- a suggested timeout for automated tests
Retrieve one scenario when you want the create data for a specific example:
Create from a scenario
Use the create fields returned by the scenario:
The request body is the same shape you use in production. In sandbox, the
member information inside create.answers chooses the scenario. You do not need
to send a scenario field or custom scenario header.
Available scenarios
Run a scenario
After creating the authorization, drive your client from the returned authorization state:
- Read
statusandnextAction. - If the API asks for requirements, patch answers or attach the requested files.
- If the API asks for confirmation, call
/confirm. - If the API asks for manual completion, follow the manual-handoff response.
- Poll the authorization until it reaches the status or outcome described by the scenario.
Your integration should follow the API response at each step. Different scenarios intentionally ask for different actions, so do not assume every authorization follows the same sequence.