I’m trying to set up Paypal Checkout option for my X-Cart reDux/Reboot 4.7.12.8 shopping cart. How can I confirm if my ‘setup’ on my Paypal Developer Sandbox account is correct for my Business Paypal account. My initial testing results on a 201 OK status for request path POST /v2/checkout/orders The Request/Response fields on the transaction follow. I see NO ERRORS on my X-cart Shopping cart test system. Request Response {
"application_context": {
"shipping_preference": "SET_PROVIDED_ADDRESS"
},
"intent": "CAPTURE",
"payer": {
"address": {
"address_line_1": "*****",
"address_line_2": "*****",
"admin_area_1": "CA",
"admin_area_2": "Salinas",
"country_code": "US",
"postal_code": "93907"
},
"email_address": "*****",
"name": {
"given_name": "*****",
"surname": "*****"
}
},
"purchase_units": [
{
"amount": {
"breakdown": {
"discount": {
"currency_code": "USD",
"value": 0
},
"handling": {
"currency_code": "USD",
"value": 0
},
"item_total": {
"currency_code": "USD",
"value": 3.99
},
"shipping": {
"currency_code": "USD",
"value": 12.52
},
"tax_total": {
"currency_code": "USD",
"value": 0
}
},
"currency_code": "USD",
"value": "16.51"
},
"items": [
{
"category": "PHYSICAL_GOODS",
"name": "1/4\" x 3-3/4\" HSS Pilot Bit",
"quantity": 1,
"sku": "HP1594",
"quantity": 1,
"sku": "HP1594",
"unit_amount": {
"currency_code": "USD",
"value": "3.99"
}
}
],
"shipping": {
"address": {
"address_line_1": "*****",
"address_line_2": "*****",
"admin_area_1": "AZ",
"admin_area_2": "Tucson",
"country_code": "US",
"postal_code": "85750"
},
"name": {
"full_name": "*****"
},
"type": "SHIPPING"
}
}
]
} Response "quantity": 1, "sku": "HP1594", "unit_amount": { "currency_code": "USD", "value": "3.99" } } ], "shipping": { "address": { "address_line_1": "*****", "address_line_2": "*****", "admin_area_1": "AZ", "admin_area_2": "Tucson", "country_code": "US", "postal_code": "85750" }, "name": { "full_name": "*****" }, "type": "SHIPPING" } } ] }
... View more