GET
/
api
/
fetch-provider-enrollments
curl --request GET \
  --url https://forecaster.cairhealth.com/api/fetch-provider-enrollments \
  --header 'Authorization: Bearer <token>'
[
  {
    "providerName": "John Doe",
    "providerId": "0195b964-5b2c-7bb3-875a-276ad770dc66",
    "providerNPI": "0987654321",
    "payerId": "HGJLR",
    "payerName": "Cigna",
    "transactionsSupported": [
      "Claim Payment (ERA)",
      "Professional Claim Submission",
      "Eligibility Inquiry",
      "Claim Status Inquiry"
    ]
  },
  {
    "providerName": "Jane Doe",
    "providerId": "0195b964-5b2c-7bb3-875a-276ad770dc66",
    "providerNPI": "1234567890",
    "payerId": "HPQRS",
    "payerName": "Aetna",
    "transactionsSupported": [
      "Claim Payment (ERA)",
      "Professional Claim Submission",
      "Eligibility Inquiry",
      "Claim Status Inquiry"
    ]
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

providerNPI
string

Optional NPI identifier to filter enrollments for a specific provider

Response

200
application/json
Provider enrollments retrieved successfully

The response is of type object[].