v1

latestOpenAPI 3.1.02026-07-226875162.5 KB
Wiki

Get Wiki Page Details

Retrieve full details for a wiki page, including body/description, mentions, aliases, and links.

Returns 402 if wiki is not plan-eligible or not activated.

get/v1/external/workspaces/{workspaceGuid}/wiki/pages/{pageGuid}

Path parameters

workspaceGuidstring required

Workspace GUID

pageGuidstring required

Wiki page GUID

Response

Full wiki page details

guidstring required

Wiki page GUID

wikiIdinteger required

Parent wiki ID

canonicalNamestring required

Canonical name of the page

descriptionstring nullable

User-provided page description or AI-generated summary

descriptionStatus'GENERATING' | 'READY' | 'FAILED' nullable

Status of description backfill

regenerationAvailableboolean nullable

Whether description can be regenerated

pageType'ENTITY' | 'MENTION' | 'CUSTOM' required

Type of wiki page

entitySubtypestring nullable

Entity subtype

extractionStatus'EXTRACTED' | 'EXTRACTING' | 'FAILED' | 'STALE' | 'NOT_EXTRACTED' required

Current extraction status

mentionCountVisibleinteger required

Number of visible mentions

sourceNoteCountVisibleinteger required

Number of source notes with visible mentions

lastUpdatedVisiblestring date-time nullable

ISO 8601 timestamp of last visible update

createdAtstring date-time required

ISO 8601 creation timestamp

updatedAtstring date-time required

ISO 8601 last update timestamp

Example response

{
  "guid": "page_abc123",
  "wikiId": 1,
  "canonicalName": "Alice Kim",
  "description": "Senior product manager at Acme",
  "descriptionStatus": "READY",
  "regenerationAvailable": true,
  "pageType": "ENTITY",
  "entitySubtype": "PERSON",
  "extractionStatus": "EXTRACTED",
  "mentionCountVisible": 5,
  "sourceNoteCountVisible": 5,
  "mentions": [
    {
      "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"
    }
  ],
  "aliases": [
    {
      "guid": "alias_abc123",
      "alias": "AK",
      "source": "USER_PROVIDED",
      "sourceMentionGuid": "mention_abc123",
      "sourceUserId": 789,
      "createdAt": "2025-01-15T10:30:00Z"
    }
  ],
  "links": [
    {
      "guid": "link_abc123",
      "sourcePageGuid": "page_src_123",
      "sourcePageName": "Alice Kim",
      "targetPageGuid": "page_tgt_456",
      "targetPageName": "Acme Corp",
      "linkType": "works_at",
      "linkTypeDisplayKo": "근무처",
      "linkTypeDisplayEn": "Works At",
      "isDirectional": true,
      "source": "EXTRACTED_FROM_MENTION",
      "creatorUserId": 789,
      "createdAt": "2025-01-15T10:30:00Z",
      "updatedAt": "2025-01-15T10:30:00Z"
    }
  ],
  "lastUpdatedVisible": "2025-01-15T10:30:00Z",
  "createdAt": "2025-01-01T00:00:00Z",
  "updatedAt": "2025-01-15T10:30:00Z"
}