Issue Accessing ClickUp Doc Pages API Despite Valid Doc Access
K
Krishna Tyagi
Hello Team,
I am facing an issue with the ClickUp V3 Docs API.
I am able to successfully access document metadata using:
GET /api/v3/workspaces/{workspace_id}/docs/{doc_id}
The API returns HTTP 200 along with valid document metadata.
However, when trying to fetch the document pages/content using:
GET /api/v3/workspaces/{workspace_id}/docs/{doc_id}/pages
the API consistently returns:
HTTP 403 Forbidden
Response:
{
"err": "not_found_or_authorized",
"status": 403,
"message": "Access denied",
"ECODE": "EXTRA_AUTHZ_002",
"meta": {
"authorization_failures": [
{
"object_id": "<doc_id>",
"object_type": "view",
"invalid_permissions": ["can_read"]
}
]
}
}
Additional details:
The API token belongs to a user who can access the document normally in the ClickUp UI.
The document is not private.
The user has view/edit permissions on the doc and the containing workspace/space.
Some docs work correctly with the same token, while others fail specifically on the /pages endpoint.
The issue appears to be related to underlying page/view permissions rather than doc metadata access.
Could you please help clarify:
Why /docs/{id} succeeds while /docs/{id}/pages fails with can_read permission errors?
Whether additional permissions/scopes are required for page content access?
Whether certain docs/views are internally restricted despite visible UI access?
Thank you.
Log In