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:

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"
        }
      ]
    }
  }
}