Skip to main content

get_doc_folder_list

Get all document folders visible to the current user.

Parameters

None.

Returns

A list of DataDocFolder objects with folder details including ID, name, color, and access restrictions.

get_doc_folder

Get a document folder by its identifier.

Parameters

Returns

A DataDocFolder with folder details.

create_doc_folder

Create a new document folder.

Parameters

Returns

The created DataDocFolder.

update_doc_folder

Update a document folder: name, color, access restrictions, archived status.

Parameters

Returns

A confirmation message.

delete_doc_folder

Delete a document folder.

Parameters

Returns

No content on success.

get_doc_list

Get all documents in a specific folder, filtered by user permissions.

Parameters

Returns

A list of DataDoc objects with document details including ID, name, folder assignment, context links, and access restrictions.

get_doc

Get a document by its identifier.

Parameters

Returns

A DataDoc with document details.

create_doc

Create a new document in a folder.

Parameters

Returns

The created DataDoc.

update_doc

Update a document: name, context links, access restrictions, archived status.

Parameters

Returns

A confirmation message.

delete_doc

Delete a document.

Parameters

Returns

No content on success.

get_doc_content

Get the content body of a document.

Parameters

Returns

A DataDocContent object with the document’s body content.

update_doc_content

Update the content body of a document.

Parameters

Returns

A confirmation message.