LocalLocationNetworkFieldStatusList

⌘K

Returns field-level listing health data for a given location. Each item describes one tracked field with counts of networks monitoring it, healthy networks, and pending/solved/dismissed discrepancies.

JSON-RPC Method:

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

Request

location_id

number

The id of the location

1{
2  "location_id": 12345
3}

Response

field_statuses

array

field_name

string

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

networks_with_field

number

Number of networks currently monitoring this field for the location.

healthy_networks

number

Networks monitoring this field that have no pending discrepancies.

pending_issues

number

Lifetime-to-date count of currently unresolved discrepancies for this field.

solved_issues

number

Lifetime-to-date count of solved discrepancies for this field.

dismissed_issues

number

Lifetime-to-date count of dismissed discrepancies for this field.

1{
2  "field_statuses": [
3    {
4      "field_name": "name",
5      "networks_with_field": 5,
6      "healthy_networks": 3,
7      "pending_issues": 2,
8      "solved_issues": 10,
9      "dismissed_issues": 1
10    }
11  ]
12}

Example Code

Quota Usage

Does not require any quota.