Publisher Suggestions: List

Retrieve suggestions publishers have submitted for the Locations in an account

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: "WAITING_ON_CUSTOMER" "ACCEPTED" "REJECTED" "EXPIRED"

When specified, only Publisher Suggestions with the provided statuses will be returned

Example: WAITING_ON_CUSTOMER,EXPIRED

Responses

Response samples

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

Publisher Suggestions: Get

Fetches details of a specific Publisher Suggestion

path Parameters
accountId
required
string
suggestionId
required
string
query Parameters
v
required
string

A date in YYYYMMDD format.

Responses

Response samples

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

Publisher Suggestions: Update

Accept or reject a Publisher Suggestion.

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
suggestionId
required
string
query Parameters
v
required
string

A date in YYYYMMDD format.

status
required
string
Enum: "ACCEPTED" "REJECTED"

The status of the Publisher Suggestion

Responses

Response samples

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