ProductPageDetailsQueryResponse
Paginated response object for the product page details query.
Declaration
object ProductPageDetailsQueryResponseProperties
| Name | Type | Description |
|---|---|---|
result | [ProductPageDetails] | Array of product page details objects. See ProductPageDetails. Read-only. |
pagination | QueryPaginationResult | Pagination metadata for the result set, including |
error | Error | 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
}
}