Approve or reject a regulated order
Learn how to approve or reject a regulated order.
Learn how to approve or reject a regulated order.
Prerequisites
To complete this tutorial, you need:
- Authorization from the selling partner for whom you are making calls. For more information, refer to Authorizing Selling Partner API applications.
- The Direct-to-Consumer Delivery (Restricted) role assigned to your developer profile.
- The Direct-to-Consumer Delivery (Restricted) role selected in the app registration page for your application.
Approve a regulated order
Call the updateVerificationStatus operation with status set to Approved.
Reject a regulated order
Call the updateVerificationStatus operation with status set to Rejected. Optionally, you can include approvedAlternativeDetails in the verificationDetails to suggest an alternative product.
The following example shows a rejection with an approved alternative ASIN:
{
"regulatedOrderVerificationStatus": {
"status": "Rejected",
"externalReviewerId": "vet_clinic_12345",
"rejectionReasonId": "pets_rx_sc_incorrect_product",
"verificationDetails": {
"approvedAlternativeDetails": [
{
"attributeName": "asin",
"originalValue": "B00DOGMEDICINE",
"approvedValue": "B00CATMEDICINE"
}
]
}
}
}
Updated about 1 hour ago
