Duplicates: List

Retrieve Duplicates for an account

If the v parameter is 20180802 or later: only duplicates of live listings (status: LIVE) will be included

path Parameters
accountId
required
string
query Parameters
v
required
string

A date in YYYYMMDD format.

limit
integer <= 50
Default: 10

Number of results to return

offset
integer
Default: 0

Number of results to skip. Used to page through results. Cannot be used together with pageToken.

locationIds
Array of strings

Defaults to all account locations with a Listings subscription.

Example: loc123,loc456,loc789

publisherIds
Array of strings

List of publisher IDs. If no IDs are specified, defaults to all publishers subscribed by the account.

Example: MAPQUEST,FACEBOOK

statuses
Array of strings
Items Enum: "POSSIBLE_DUPLICATE" "SUPPRESSION_REQUESTED" "SUPPRESSED" "UNAVAILABLE"

When specified, only Duplicates with the provided statuses will be returned

Example: POSSIBLE_DUPLICATE,SUPPRESSION_REQUESTED

Responses

Response samples

Content type
application/json
{
  • "meta": {
    },
  • "response": {
    }
}

Duplicates: Create

Creates a new Duplicate with status SUPPRESSION_REQUESTED.

NOTE: When sending requests to this endpoint, you must provide your Yext user ID in the Yext-User-Id header.

path Parameters
accountId
required
string
query Parameters
v
required
string

A date in YYYYMMDD format.

locationId
string

An account location ID with a Listings subscription.

publisherId
required
string
url
required
string

URL of the Duplicate listing

Responses

Response samples

Content type
application/json
{
  • "meta": {
    },
  • "response": {
    }
}

Duplicates: Delete

Indicates that a Duplicate should be ignored.

NOTE: When sending requests to this endpoint, you must provide your Yext user ID in the Yext-User-Id header.

path Parameters
accountId
required
string
duplicateId
required
string
query Parameters
v
required
string

A date in YYYYMMDD format.

Responses

Response samples

Content type
application/json
{
  • "meta": {
    },
  • "response": { }
}

Duplicates: Suppress

Request suppression of a Duplicate.

NOTE: When sending requests to this endpoint, you must provide your Yext user ID in the Yext-User-Id header.

path Parameters
accountId
required
string
duplicateId
required
string
query Parameters
v
required
string

A date in YYYYMMDD format.

Responses

Response samples

Content type
application/json
{
  • "meta": {
    },
  • "response": { }
}
Feedback