EZCart Docs
ApiV1StoreCustomersMeAddresses

Add a new shipping address

Add a new shipping address.

POST
/v1/store/customers/me/addresses

Request Body

application/json

addressData*

Structured address data

isDefault?boolean

Response Body

application/json

curl -X POST "https://api-pub.ezcart.io/v1/store/customers/me/addresses" \  -H "Content-Type: application/json" \  -d '{    "addressData": {}  }'
{
  "id": "string",
  "addressData": {
    "property1": null,
    "property2": null
  },
  "isDefault": true,
  "createdAt": "2019-08-24T14:15:22Z"
}