get http://{{endpoint}}/api/padma-backend/private-pages/
This endpoint retrieves a list of private pages from the Padma backend.
Request
- Method: GET
- URL:
{{endpoint}}/api/padma-backend/private-pages/
Response
The response will be in JSON format with the following structure:
{
"data": [
{
"id": 0,
"documentId": "",
"role": "",
"title": "",
"slug": "",
"page_url": "",
"createdAt": "",
"updatedAt": "",
"publishedAt": "",
"locale": ""
}
],
"meta": {
"pagination": {
"page": 0,
"pageSize": 0,
"pageCount": 0,
"total": 0
}
}
}
The data array contains the private page details including id, documentId, role, title, slug, page_url, createdAt, updatedAt, publishedAt, and locale. The meta object provides pagination information with page, pageSize, pageCount, and total items.
