POST api/petmedclaimreversal
Request Information
URI Parameters
None.
Body Parameters
PetMedClaimReversalModel| Name | Description | Type | Additional information |
|---|---|---|---|
| DateOfService | date |
Required |
|
| ServiceProviderId | string |
Required |
|
| GroupId | string |
Required Matching regular expression pattern: ^(COSTCO)$ |
|
| RxNumber | string |
Required Matching regular expression pattern: ^[0-9]*$ String length: inclusive between 1 and 12 |
|
| FillNumber | byte |
Required Range: inclusive between 0 and 99 |
Request Formats
application/json, text/json, application/json-patch+json
Sample:
{
"dateOfService": "2025-11-09T10:16:28.5145706-06:00",
"serviceProviderId": "sample string 2",
"groupId": "sample string 3",
"rxNumber": "sample string 4",
"fillNumber": 64
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PetMedClaimReversalResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseStatus | string |
None. |
|
| ClaimNo | integer |
None. |
|
| RejectReason | Collection of RejectReason |
None. |
Response Formats
application/json, text/json, application/json-patch+json
Sample:
{
"responseStatus": "sample string 1",
"claimNo": 2,
"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"
}
]
}