Skip to main content
GET
/
v1
/
prior-auth
/
authorization-options
List authorization options
curl --request GET \
  --url https://api.sandbox.trycollate.ai/v1/prior-auth/authorization-options \
  --header 'Authorization: Bearer <token>'
{
  "providerNpi": "<string>",
  "options": [
    {
      "payerId": "<string>",
      "payerDisplayName": "<string>",
      "insuranceState": "<string>",
      "serviceType": "inpatient",
      "defaultPortalAuthMode": "automated",
      "label": "<string>",
      "supportedServiceCodeSystems": [
        "hcpcs"
      ],
      "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 needs to show the payer, state, service type, service-code system, and portalAuthMode combinations Collate can service for a given provider. Each option includes the recommended default portal auth mode and the full set of supported modes. Authorization options are read-only. The endpoint does not reserve a route or create an authorization.

Returns

Returns the provider NPI and an array of route options.

Authorizations

Authorization
string
header
default:your-api-key
required

API key passed as Authorization: Bearer <API_KEY>.

Query Parameters

providerNpi
string
required

Provider NPI registered to the authenticated organization.

Response

Successful Response

providerNpi
string
required

Provider NPI the options were resolved for.

options
AuthorizationRouteOption · object[]

Serviceable authorization route options.