Contents

ProductPageDetailsQueryResponse

Paginated response object for the product page details query.

Declaration

object ProductPageDetailsQueryResponse

Properties

NameTypeDescription
result[ProductPageDetails]

Array of product page details objects. See ProductPageDetails. Read-only.

paginationQueryPaginationResult

Pagination metadata for the result set, including pageSize (number of results per page), offset (zero-based offset of the first result), and totalCount (total number of matching records, only populated when the request sends fetchTotalCount: true). Read-only.

errorError

Error details if the request failed. Omitted entirely on success. See Error. Read-only.

Discussion

The ProductPageDetailsQueryResponse object is the top-level envelope returned by Query Product Pages. The pagination object describes the current page position.

Example

{
  "result": [
    {
      "id": "133fc807-d4d5-4c77-92ae-1d6ffdf0c7dc",
      "adamId": 324684580,
      "name": "AwayFinder Premium Landing",
      "state": "PUBLISHED",
      "deepLink": "awayfinder://campaign/premium",
      "creationTime": "2025-01-10T08:00:00.000",
      "modificationTime": "2025-01-10T08:00:00.000"
    }
  ],
  "pagination": {
    "totalCount": 1,
    "offset": 0,
    "pageSize": 20
  }
}

See Also