POST api/PriceCheck

Request Information

URI Parameters

None.

Body Parameters

PriceCheckModel
NameDescriptionTypeAdditional information
MemberSeqNo

The unique identifier for the member within the claims system. Also known as the RxCPersonID, it can be retrieved from the ID property of the GroupMembers and Members endpoints.

integer

None.

DrugNDCs

A list of National Drug Codes (NDC) representing the drugs to be price-checked.

Collection of string

None.

PharmacyNPIs

A list of National Provider Identifier (NPI) numbers for the pharmacies where the price check will be performed.

Collection of string

None.

Quantity

The quantity of each drug to be dispensed.

decimal number

None.

DaysSupply

The number of days' supply for each drug.

integer

None.

DAWCodes

A list of Dispense As Written (DAW) codes indicating specific dispensing instructions for each drug.

Collection of string

None.

Request Formats

application/json, text/json, application/json-patch+json

Sample:
{
  "memberSeqNo": 1,
  "drugNDCs": [
    "sample string 1",
    "sample string 2"
  ],
  "pharmacyNPIs": [
    "sample string 1",
    "sample string 2"
  ],
  "quantity": 2.0,
  "daysSupply": 3,
  "dawCodes": [
    "sample string 1",
    "sample string 2"
  ]
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of PriceCheckResultModel
NameDescriptionTypeAdditional information
NDC

string

None.

DrugName

string

None.

GenericName

string

None.

StrengthDescription

string

None.

DrugAndStrength

string

None.

RouteOfAdministration

string

None.

IsBrand

boolean

None.

DrugDescriptorIdentifier

integer

None.

RejectMessage

string

None.

MemberPay

decimal number

None.

Copay

decimal number

None.

Coinsurance

decimal number

None.

Deductible

decimal number

None.

PlanPay

decimal number

None.

RejectMsg

string

None.

IsSuccessful

boolean

None.

DrugTier

string

None.

DrugTierDescription

string

None.

DAW

string

None.

NPI

string

None.

Response Formats

application/json, text/json, application/json-patch+json

Sample:
[
  {
    "ndc": "sample string 1",
    "drugName": "sample string 2",
    "genericName": "sample string 3",
    "strengthDescription": "sample string 4",
    "drugAndStrength": "sample string 5",
    "routeOfAdministration": "sample string 6",
    "isBrand": true,
    "drugDescriptorIdentifier": 8,
    "rejectMessage": "sample string 9",
    "memberPay": 10.0,
    "copay": 11.0,
    "coinsurance": 12.0,
    "deductible": 13.0,
    "planPay": 14.0,
    "rejectMsg": "sample string 15",
    "isSuccessful": true,
    "drugTier": "sample string 17",
    "drugTierDescription": "sample string 18",
    "daw": "sample string 19",
    "npi": "sample string 20"
  },
  {
    "ndc": "sample string 1",
    "drugName": "sample string 2",
    "genericName": "sample string 3",
    "strengthDescription": "sample string 4",
    "drugAndStrength": "sample string 5",
    "routeOfAdministration": "sample string 6",
    "isBrand": true,
    "drugDescriptorIdentifier": 8,
    "rejectMessage": "sample string 9",
    "memberPay": 10.0,
    "copay": 11.0,
    "coinsurance": 12.0,
    "deductible": 13.0,
    "planPay": 14.0,
    "rejectMsg": "sample string 15",
    "isSuccessful": true,
    "drugTier": "sample string 17",
    "drugTierDescription": "sample string 18",
    "daw": "sample string 19",
    "npi": "sample string 20"
  }
]