Я пытаюсь отключить доставку, как описано в документации, но она не работает. Экран
Документ: https://developer.paypal.com/docs/api/orders/v2/#definition-order_application_context
createOrder: (data, actions) => {
return actions.order.create({
purchase_units: [
{
description: "global description",
items: [
{
name: "aaa",
quantity: 1,
unit_amount: { currency_code: "EUR", value: 10 }
},
{
name: "bbb",
quantity: 2,
unit_amount: { currency_code: "EUR", value: 10 }
}
],
amount: {
currency_code: "EUR",
value: 30,
breakdown: {
item_total: {
currency_code: "EUR",
value: 30
}
}
},
order_application_context: {
shipping_preference: "NO_SHIPPING"
}
}
]
});
Та же проблема с:
application_context: {
shipping_preference: "NO_SHIPPING"
}