The Collate Prior Auth API submits prior authorizations to U.S. health plans through a single resource: the Authorization. You create an authorization for a payer submission, answer the questionnaire the API surfaces, attach the required supporting documents, and confirm when the case is ready to advance. Collate handles payer-portal navigation, submission, payer receipt, and decision tracking.Documentation Index
Fetch the complete documentation index at: https://docs.trycollate.ai/llms.txt
Use this file to discover all available pages before exploring further.
How an authorization moves
Two fields drive every authorization:status and nextAction.
status says where the case is. nextAction says what to do next when the
case is yours.
status | Owner | What you do |
|---|---|---|
requires_input | You | Patch answers and attach files. |
requires_confirmation | You | Confirm the current nextAction. |
processing | Collate | Wait. |
waiting_on_payer | Payer | Wait. |
completed | — | Read outcome and submission.decision. |
canceled | — | Stop. |
nextAction.type | Resolve by |
|---|---|
provide_requirements | Patching answers and attaching files. Do not call /confirm. |
advance_case | Calling /confirm with the current nextAction.id. |
approve_submission | Reviewing submission.reviewSnapshot, then calling /confirm. |
The integration loop
Read the authorization. Act on the currentstatus.
Resources
You usually work with four resources:| Resource | Purpose |
|---|---|
Authorization | The durable case. Source of truth for state. |
File | Upload supporting documents. |
Provider | Tenant-scoped providers, looked up by NPI. |
Payer | Canonical payer destinations. |
Next steps
Quickstart
Create, fill, attach, and confirm a sandbox authorization in TypeScript.
Authorization lifecycle
The full state machine, transitions, and polling model.
Final submission approval
Render
submission.reviewSnapshot and confirm at the final payer boundary.Attaching files
Upload, complete, and link supporting documents.
Canonical fields
Stable
linkIds to map directly from your source systems.API reference
Authentication, idempotency, concurrency, and errors.