Skip to content

Add address to customer

Agustina Corvo Gutierrez requested to merge add-address-to-customer into develop

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"
    ]
}'

Merge request reports