API 2.0
Documents

Documents

Get Project Documents

Retrieve all documents for a specific project
/project/PROJECT-ID/documents

Parameters

Name Required Default Type/Format Description
subfolders no false Boolean set to true to include documents from subfolders

Response

Sample response →
[
    {
        "id": "DOCUMENT-ID",
        "name": "Note",
        "projectId": "PROJECT-ID",
        "createdByUserId": "USER-ID",
        "momentCreated": "2025-08-28T07:35:01.422492",
        "momentUpdated": "2025-08-28T07:50:30.923357"
    },
]

Get Document

Get document details and content by document ID
/document/DOCUMENT-ID

Response

Sample response →
{
    "content": "Content in text format",
    "contentRTF": {},
    "createdByUserId": "USER-ID",
    "id": "DOCUMENT-ID",
    "momentCreated": "2025-08-28T07:35:01.422492",
    "momentUpdated": "2025-08-28T07:50:30.923357",
    "name": "Note",
    "projectId": "PROJECT-ID"
}