v1
latestOpenAPI 3.1.02026-07-226875162.5 KBWiki
List Page Mentions
List mentions (references from notes) for a specific wiki page with cursor-based pagination.
Returns 402 if wiki is not plan-eligible or not activated.
get/v1/external/workspaces/{workspaceGuid}/wiki/pages/{pageGuid}/mentions
Path parameters
workspaceGuidstring required
Workspace GUID
pageGuidstring required
Wiki page GUID
Query parameters
cursorstring
Cursor for pagination (from nextCursor of previous response)
limitinteger
Page size (default 50, max 200)
Response
Paginated list of page mentions
Example response
{
"content": [
{
"guid": "mention_abc123",
"noteId": 123,
"paragraphId": 456,
"paragraphUuid": "para_uuid_123",
"kind": "EXPLICIT",
"sourceUserId": 789,
"extractedText": "Alice Kim mentioned in our meeting",
"confidence": 0.95,
"createdAt": "2025-01-15T10:30:00Z"
}
],
"nextCursor": "opaque-cursor-string"
}