LocalLocationListingList

⌘K

Returns a list of listings for a given location. A listing is a publication of a location on a given network.

JSON-RPC Method:

local.location.listing.list
Go to Example Code

Request

id

number

The id of the location

1{
2  "id": 12345
3}

Response

listings

array

name

string

The listing name (network).

status

string

The status of the listing.

Acceptable Values:

syncedsubmittednot_syncednetwork_limitationerror

url

string | null

The URL of the listing.

1{
2  "listings": [
3    {
4      "name": "gmb",
5      "status": "synced",
6      "url": "https://maps.google.com/maps?cid=123123123321321321"
7    },
8    {
9      "name": "facebook",
10      "status": "synced",
11      "url": "https://www.facebook.com/2341234324234"
12    },
13    {
14      "name": "bing",
15      "status": "submitted",
16      "url": null
17    }
18  ]
19}

Example Code

Quota Usage

Does not require any quota.