To confirm that everything is set up correctly, please follow the steps below.

  1. Ensure that your group is in Active mode in Amazon (if you are in Test mode, the order will not show up in Amazon)
  2. Using the createCart mutation, create a cart with an Amazon product.
    • Replace the values in the double curly braces ({{}}) below with your own values.
{
"input": {
    "items": {
        "amazonCartItemsInput": [{
            "quantity": 1,
            "productId": "B001G60EK8"
        }],
    },
    "buyerIdentity": {
        "firstName": "{{firstName}}",
        "lastName": "{{lastName}}",
        "email": "{{email}}",
        "phone": "{{phone}}",
        "address1": "{{address1}}",
        "address2": "{{address2}}",
        "city": "{{city}}",
        "provinceCode": "{{provinceCode}}",
        "countryCode": "US",
        "postalCode": "{{postalCode}}"
    }
}
}
  1. Use the submitCart mutation to submit the cart
    • Replace cart_id with the cart id from the previous steps
    • Confirm that free shipping was applied if you have an Amazon Business Prime membership on your account.
{
    "input": {
        "id": "{{cart_id}}"
    }
}
  1. Confirm the order appears in your Amazon Business account.
  2. Cancel the order if you don’t need the product.