LocalLocationNetworkList

⌘K

Returns a list of networks for a given location. A network represents an authenticated connection to a third party platform for a given location.

JSON-RPC Method:

local.location.network.list
Go to Example Code

Request

location_id

number

The id of the location

1{
2  "location_id": 12345
3}

Response

networks

array

type

string

The type of the network

Acceptable Values:

facebooktwitterinstagramgoogle_my_businessgoogle_pages

id

number

The internal id of the network

name

string

Name as it appears on the network

remote_network_id

string

The id of network

picture

string | null

URL representing the location of a picture for the given network

profile_url

string | null

URL representing the location in connected network.

error

string | null

If present, a string representation of an error with the connection to the network

1{
2  "networks": [
3    {
4      "id": 1234566788,
5      "remote_network_id": "12345",
6      "name": "Example Google Page",
7      "type": "google_pages",
8      "picture": null,
9      "error": null,
10      "profile_url": "https://maps.google.com/maps?cid=12345"
11    },
12    {
13      "id": 1234566789,
14      "remote_network_id": "54321",
15      "name": "Example Facebook Page",
16      "type": "facebook",
17      "picture": null,
18      "error": null,
19      "profile_url": "https://meta.com/pages?cid=12345"
20    }
21  ]
22}

Example Code

Quota Usage

Does not require any quota.