PPylon Developers
ApiOrganizer Pages

List page versions

Returns paginated version history for a page.

GET
/api/organizer/v1/sites/{siteId}/pages/{pageId}/versions
AuthorizationBearer <token>

Enter your bearer token from the Pylon Auth API.

In: header

Path Parameters

siteId*string
Formatuuid
pageId*string
Formatuuid

Query Parameters

page?integer
Default1
Formatint32
pageSize?integer
Default20
Formatint32

Response Body

application/json

application/problem+json

curl -X GET "https://loading/api/organizer/v1/sites/497f6eca-6276-4993-bfeb-53cbbbba6f08/pages/497f6eca-6276-4993-bfeb-53cbbbba6f08/versions"
{
  "data": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "pageId": "347b9bf8-fe00-46f6-b8ca-1e06b3bd5809",
      "versionNumber": 0,
      "publishedBy": null,
      "createdAt": "2019-08-24T14:15:22Z"
    }
  ],
  "meta": {
    "totalCount": 0,
    "page": 0,
    "pageSize": 0,
    "totalPages": 0,
    "hasNext": true,
    "hasPrevious": true
  },
  "links": null
}
{
  "code": "string",
  "message": "string"
}