This API response element represents an error in trip planning.
| name | data type | constraints | description |
|---|---|---|---|
| id | number | required | |
| msg | string | ||
| message | Message | ||
| missing | array of string | the list of point names which cannot be found (from, to, intermediate.n) | |
| noPath | boolean | required | whether no path has been found |
Example
{
"id" : 12345,
"msg" : "...",
"message" : "GEOCODE_FROM_TO_AMBIGUOUS",
"missing" : [ "...", "..." ],
"noPath" : true
}