Retrieving addresses from an order

Learn how to retrieve a billing or shipping address from an order.

Retrieving the billing address from an order

To retrieve a billing address, use the GET /shoppers/me/orders/{orderId}/billing-address resource.

curl --location --request GET 'https://api.digitalriver.com/v1/shoppers/me/orders/9999999999/billing-address' \
--header 'authorization: Basic ***\
...

Retrieving the shipping address from an order

To retrieve a shipping address, use the GET /shoppers/me/orders/{orderId}/shipping-address resource.

curl --location --request GET 'https://api.digitalriver.com/v1/shoppers/me/orders/9999999999/shipping-address' \
--header 'authorization: Basic ***\
...

Last updated