400 - Value Too Large
Tip
The value_too_large
error code is returned when a single value is larger than the permitted maximum.
This could be returned for example, if the maximum value for latitude
is exceeded when specifying a lat_long
value for an address
, e.g.:
{
"addresses": [
{
"address_type": "destination",
"lat_long": {
"latitude": 99999.99,
"longitude": 12.334
}
}
]
}
Tip
The maximum value for latitude
is 90
, and the maximum value for longitude
is 180
. Other properties may have different maximum values specified.