LocalLocationNetworkStatusList

⌘K

Returns a list of statuses per network for a given location. Each status describes one network monitored for the location, including how many fields are monitored, how many are healthy, and the total number of outstanding issues.

JSON-RPC Method:

local.location.network.status.list
Go to Example Code

Request

location_id

number

The id of the location

1{
2  "location_id": 12345
3}

Response

network_statuses

array

network_name

string

Name as it appears on the network

network_type

string

The network a listing-health status is for.

Acceptable Values:

google_my_businessfacebookapple_mapsbingyelp

monitored_fields

number | null

Number of fields being monitored for the network.

healthy_fields

number | null

Number of monitored fields with no outstanding discrepancies.

1{
2  "network_statuses": [
3    {
4      "network_name": "Google My Business",
5      "network_type": "google_my_business",
6      "monitored_fields": 12,
7      "healthy_fields": 12
8    },
9    {
10      "network_name": "Facebook",
11      "network_type": "facebook",
12      "monitored_fields": 12,
13      "healthy_fields": 11
14    }
15  ]
16}

Example Code

Quota Usage

Does not require any quota.