POST api/petmedpricecheck
Request Information
URI Parameters
None.
Body Parameters
PetMedPriceCheckModelName | Description | Type | Additional information |
---|---|---|---|
MemberID | string |
Required String length: inclusive between 0 and 20 |
|
GroupId | string |
Required Matching regular expression pattern: ^(COSTCO)$ |
|
NDC | string |
Required String length: inclusive between 11 and 19 |
|
Quantity | decimal number |
Required |
Request Formats
application/json, text/json, application/json-patch+json
Sample:
{ "memberID": "sample string 1", "groupId": "sample string 2", "ndc": "sample string 3", "quantity": 4.0 }
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PetMedPriceCheckResponseModelName | Description | Type | Additional information |
---|---|---|---|
ResponseStatus | string |
None. |
|
PatientPayAmount | decimal number |
None. |
|
PriceCheckDate | date |
None. |
|
RejectReason | Collection of RejectReason |
None. |
Response Formats
application/json, text/json, application/json-patch+json
Sample:
{ "responseStatus": "sample string 1", "patientPayAmount": 2.0, "priceCheckDate": "2024-11-20T11:11:59.0679903-06:00", "rejectReason": [ { "code": "sample string 1", "reason": "sample string 2", "additionalReason": "sample string 3" }, { "code": "sample string 1", "reason": "sample string 2", "additionalReason": "sample string 3" } ] }