Add address to customer
Con este endpoint se puede agregar una dirección al customer.
Request:
curl --location --request PATCH 'http://localhost:5000/user/addAddressToCustomer' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "another1@example.com",
"addresses": [
"nueva direccion"
]
}'