Executing validate service

executing validate service,

{Content-Type=[application/x-www-form-urlencoded], authorization=[Bearer xxxxxxxxxxxxxxxx]}

address=Calle%20del%20Corregidor%20Diego%20de%20Valderrabano%2025%2028030%20Madrid&type=delivering&phone=654666999" resulted in 404 (Not Found); invoking error handler

The call is the same as in your own test api. In your api returns OK, but here no.

Result

{“error”:“Path not found”}

why? we do not see what is wrong

thanks

Which address are you calling for the validate service? Seems that the path is simply not valid.

The Validate address endpoint path in sandbox is https://sandbox-api.stuart.com/v2/addresses/validate so your call would look like:

curl --request GET \
  --url 'https://sandbox-api.stuart.com/v2/addresses/validate?address=Calle%20del%20Corregidor%20Diego%20de%20Valderrabano%2025%2028030%20Madrid&phone=654666999&type=delivering' \
  --header 'authorization: Bearer <<access_token>>' \