curl --request GET \
--url https://api.surefeedback.com/api/v1/sites/{siteId}/approvals \
--header 'X-API-Key: <api-key>'{
"success": true,
"data": [
{
"page_url": "https://example.com/home",
"status": "approved",
"approved_by": { "id": "...", "name": "Jane Smith" },
"approved_at": "2026-03-01T09:00:00Z"
},
{
"page_url": "https://example.com/about",
"status": "unapproved"
}
]
}
Get all page approvals for a site.
curl --request GET \
--url https://api.surefeedback.com/api/v1/sites/{siteId}/approvals \
--header 'X-API-Key: <api-key>'{
"success": true,
"data": [
{
"page_url": "https://example.com/home",
"status": "approved",
"approved_by": { "id": "...", "name": "Jane Smith" },
"approved_at": "2026-03-01T09:00:00Z"
},
{
"page_url": "https://example.com/about",
"status": "unapproved"
}
]
}
{
"success": true,
"data": [
{
"page_url": "https://example.com/home",
"status": "approved",
"approved_by": { "id": "...", "name": "Jane Smith" },
"approved_at": "2026-03-01T09:00:00Z"
},
{
"page_url": "https://example.com/about",
"status": "unapproved"
}
]
}
Was this page helpful?