Verification Methods: List

Retrieve verification methods for entities in an account

path Parameters
accountId
required
string
publisherId
required
string
locale
required
string

Locale code.

query Parameters
v
required
string

A date in YYYYMMDD format.

entityIds
string

A comma-separated list of Entity IDs. If no IDs are specified, defaults to all entities with a listings subscription.

pageToken
string

If a response to a previous request contained the nextPageToken field, pass that field's value as the pageToken parameter to retrieve the next page of data.

limit
integer
Default: 100

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.

Responses

Response samples

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

Verification Statuses: List

Retrieve verification statuses for entities in an account

path Parameters
accountId
required
string
publisherId
required
string
query Parameters
v
required
string

A date in YYYYMMDD format.

entityIds
string

A comma-separated list of Entity IDs. If no IDs are specified, defaults to all entities with a listings subscription.

pageToken
string

If a response to a previous request contained the nextPageToken field, pass that field's value as the pageToken parameter to retrieve the next page of data.

limit
integer
Default: 100

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.

Responses

Response samples

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

Verification: Initiate

Initiate verification for entities in an account. This request will trigger verification codes being sent to the specified addresses, phone numbers, or email addresses.

path Parameters
accountId
required
string
publisherId
required
string
locale
required
string

Locale code.

query Parameters
v
required
string

A date in YYYYMMDD format.

Request Body schema: application/json
Array
entityId
string

ID of the entity being verified.

method
string
Enum: "POSTCARD" "EMAIL" "PHONE" "SMS"
alternateEmail
string

Provides a user-specified email address that the verification code should be sent to when userNameEditable is true in the VerificationMethod response.

recipientName
string

Contact name the mail should be addressed to. Only applies if the verification method is POSTCARD.

Responses

Request samples

Content type
application/json
[
  • {
    }
]

Response samples

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

Verification: Complete

Provides verification codes to complete the verification for entities in an account.

path Parameters
accountId
required
string
publisherId
required
string
query Parameters
v
required
string

A date in YYYYMMDD format.

Request Body schema: application/json
Array
entityId
string

ID of the entity being verified.

verificationCode
string

The verification code received from the publisher.

Responses

Request samples

Content type
application/json
[
  • {
    }
]

Response samples

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