Customers
Get return requests
GET http://localhost:59318/odata/v1/Customers(1)/ReturnRequests
Get email address
GET http://localhost:59318/odata/v1/Customers(1)?$select=Email
Assign billing and shipping address
PATCH http://localhost:59318/odata/v1/Customers(1)
{ "BillingAddressId": 86384, "ShippingAddressId": 86384 }
Assign address with ID 10
POST http://localhost:59318/odata/v1/Customers(1)/Addresses(10)
Use the DELETE method to remove an assignment. Use 0
as address identifier if you want to remove all address assignments for a customer.
Last updated
Was this helpful?