Unique List of Payer Information
You can obtain a unique list of businessName
, alias
, planType
, serviceName
, clearingHouse
, and lineOfBusiness
values using the List Unique Fields
endpoint. The endpoint returns unique list for each of these items in a single JSON response.
A more efficient way to use this endpoint is to utilize a set of parameters that, if set to true, suppresses output. They are skipClearingHouses={false|true}
, skipBusinessNames={false|true}
, skipAliases={false|true}
, skipPlanTypes={false|true}
, skipServiceNames={false|true}
, and skipLineOfBusinesses={false|true}
. The default value of these is false.
As an example, returning a list of only serviceNames
would look like:
"https://sandbox-apigw.optum.com/medicalnetwork/payerfinder/v1/payers/fields?skipBusinessNames=true&skipAliases=true&skipPlanTypes=true&skipServiceNames=false&skipClearingHouses=true&skipLineOfBusinesses=true">
Updated 2 days ago