Order update callback
documentedReceive updated order information via callback from PayPal.
POST /v2/checkout/orders/order-update-callbackOrdersno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api-m.paypal.com/v2/checkout/orders/order-update-callback" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-d '{"shipping_address": {"country_code": "{{$country_code}}", "admin_area_2": "{{$admin_area_2}}", "admin_area_1": "{{$admin_area_1}}", "postal_code": "{{$postal_code}}"}}'