LocalLocationNetworkFieldIssueList

⌘K

Returns field-level discrepancy issues for a given location. Each item describes one field + network combination where the stored value differs from what is live on the network. Deduplicated by field + network.

JSON-RPC Method:

local.location.network.field.issue.list
Go to Example Code

Request

location_id

number

The id of the location

1{
2  "location_id": 12345
3}

Response

field_issues

array

location_id

number

The id of the location

network_type

string

The type of the network

Acceptable Values:

facebooktwitterinstagramgoogle_my_businessgoogle_pages

network_name

string

Plain text display name of a network (e.g. "Google My Business", "Apple Maps").

field_name

string

In-app display name for a tracked listing field (e.g. "Listings Name", "Address", "Phone").

1{
2  "field_issues": [
3    {
4      "location_id": 12345,
5      "network_type": "google_my_business",
6      "network_name": "Google My Business",
7      "field_name": "Address"
8    }
9  ]
10}

Example Code

Quota Usage

Does not require any quota.