Skip to main content
POST
/
v1
/
prior-auth
/
authorization-route-resolutions
Resolve an authorization route
curl --request POST \
  --url https://api.sandbox.trycollate.ai/v1/prior-auth/authorization-route-resolutions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "providerNpi": "<string>",
  "templateSelection": {
    "payerId": "<string>",
    "insuranceState": "<string>",
    "serviceType": "inpatient",
    "serviceCode": "<string>",
    "serviceCodeSystem": "hcpcs"
  }
}
'
{
  "providerNpi": "<string>",
  "templateSelection": {
    "payerId": "<string>",
    "insuranceState": "<string>",
    "serviceType": "inpatient",
    "serviceCode": "<string>",
    "serviceCodeSystem": "hcpcs"
  },
  "payerDisplayName": "<string>",
  "defaultPortalAuthMode": "automated",
  "label": "<string>",
  "portalAuthModes": [
    "automated"
  ]
}

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.

Use this endpoint when your application already has a templateSelection and needs to validate the route, recover the resolved payerDisplayName and label, or read the supported portalAuthMode values before create. Route resolution is read-only. It does not start Collate processing or reserve route capacity.

Returns

Returns the resolved route metadata.

Authorizations

Authorization
string
header
default:your-api-key
required

API key passed as Authorization: Bearer <API_KEY>.

Body

application/json
providerNpi
string
required

Provider NPI to route from.

templateSelection
TemplateSelection · object
required

Payer, state, service type, and service code to resolve.

Response

Successful Response

providerNpi
string
required

Provider NPI the route was resolved for.

templateSelection
TemplateSelection · object
required

Resolved route selection.

payerDisplayName
string
required

Human-readable payer name.

defaultPortalAuthMode
enum<string>
required

Recommended portal auth mode for the resolved route.

Available options:
automated,
customer_login
label
string
required

Display label for the resolved route.

portalAuthModes
enum<string>[]

Portal auth modes available for the resolved route.

Available options:
automated,
customer_login