Positioning API Developer's Guide

Error Response

If a request failed for some reason, the HTTP response code is "4xx" (Client Error) or "5xx" (Server Error). The response body may also contain a short textual description of the error to assist in troubleshooting.

Examples:

{
  "error": {
  "code": 400,
  "message": "Bad Request",
  "description": "'mnc' must be less than or equal to 999"
  }
}

{
  "error": {
  "code": 404,
  "message": "Not Found",
  "description": "Position not found"
  }
}