Get Document
This endpoint fetch a particular document based on document id.
GET
/api/v1.0/docs/{document_id}
curl \
--request GET 'https://openapi.niftypm.com/api/v1.0/docs/{document_id}' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"id": "string",
"name": "string",
"access_type": "string",
"type": "string",
"subtype": "string",
"external_id": "string",
"content": {},
"author": "string",
"project_id": "string",
"tasks": [
"string"
],
"archived": true,
"members": [
{
"id": "string",
"permission": "string",
"is_author": true,
"active": true,
"last_seen": "2025-05-04T09:42:00Z",
"last_edited": "2025-05-04T09:42:00Z"
}
],
"discussion_keys": [
"string"
],
"public_token": "string",
"share_token": "string",
"created_at": "2025-05-04T09:42:00Z",
"comments": 42.0,
"hasAccess": true,
"labels": [
"string"
],
"folder": "string",
"order": 42.0,
"multipage": true,
"parent_doc_id": "string"
}