Listings API V2

ErrorAltProperty

object

Details of an error’s property.

propertystring

The name of the property.

Example:person

valuestring

The value of the property.

Example:J0hn D03

Example
{
  "property": "person",
  "value": "J0hn D03"
}

Errors

object

An error occurred, and the request could not be completed.

errorsarray[object]

Details of an error or issue.

Show Child Parameters
Example
{
  "errors": [
    {
      "code": "resource.issue_type",
      "message": "The issue happened because something is wrong.",
      "property": "person",
      "properties": {
        "firstName": "D0nn@",
        "lastName": "Sm!th"
      }
    }
  ]
}

ErrorsAlt

object

An error occurred, and the request could not be completed.

errorsarray[object]

Details of an error or issue.

Show Child Parameters
Example
{
  "errors": [
    {
      "errorID": "157a16f0-503d-4256-ba60-a4876e8eb9bb",
      "code": "resource.issue_type",
      "description": "The issue happened because something is wrong.",
      "properties": [
        {
          "property": "person",
          "value": "J0hn D03"
        }
      ]
    }
  ]
}

GeoCodeRequest

object

Details of the geographical coordinates for a location.

longitudenumber(double)

The longitude of the location.

Example:-117.91836265987132

latitudenumber(double)

The latitude of the location.

Example:33.81228788622535

Example
{
  "longitude": -117.91836265987132,
  "latitude": 33.81228788622535
}

GeoCodeResponse

object

Details of the geographical coordinates for a location.

longitudenumber(double)

The longitude of the location.

Example:-117.91836265987132

latitudenumber(double)

The latitude of the location.

Example:33.81228788622535

Example
{
  "longitude": -117.91836265987132,
  "latitude": 33.81228788622535
}