List Addresses

GET /api/v1/customers/{id}/addresses

Add Address

POST /api/v1/customers/{id}/addresses

Required: line1, town, postcode, country.

curl -X POST -H "Authorization: Bearer KEY:SECRET" 
     -H "Content-Type: application/json" 
     -d '{"first_name": "Jane", "last_name": "Doe", "line1": "123 High Street", "town": "London", "postcode": "SW1A 1AA", "country": "826"}' 
     https://example.com/api/v1/customers/42/addresses

Update Address

PUT /api/v1/customers/{id}/addresses/{address_id}

Order History

GET /api/v1/customers/{id}/orders

Paginated list of orders placed by this customer.