Add shipping address with structure in API document responses
D
Daniel Ramos
In calls that return documents right now, the shipping address is received as follows:
“ShippingData”: “First Name Last Name, Address 28, City, 00000, Country, PA, Province”,
It would be nice to receive this information in a structured way so that we can work on it in a better way:
“ShippingData”: {
“name”: “Name”,
“surname”: “Last name”,
“street”: “Address 28",
“city”: “City”,
“PostalCode”: “00000",
“country”: “Country”,
“CountryISO”: “PA”,
“province”: “Province”,
}
I
Ivan
Mismo problema. Separar por comas la dirección es una decisión terrible, ya que muchas direcciones contienen comas y hace un campo importantísimo completamente inútil. Por lo menos separar por un carácter tipio | seria mucho más útil.