Skip to main content

Typed access

Docs operations are reached via client.Api.Docs.Doc on EksoClient.
await client.Api.Docs.Doc.GetDocAsync();
For the full set of methods and request/response types, your IDE’s auto-completion is the fastest discovery path. Each method below maps 1-to-1 to an HTTP route in the API Reference.

Operations

MethodRouteSummary
GET/api/docs/doc/{docId}Retrieves a single document by its identifier.
GET/api/docs/doc/{docId}/contentRetrieves the content body of a document.
GET/api/docs/folderLists all document folders visible to the current user.
GET/api/docs/folder/{folderId}Retrieves a single document folder by its identifier.
GET/api/docs/folder/{folderId}/listLists all active documents within a specific folder, filtered by user permissions.
POST/api/docs/docCreates a new document and initializes its empty content record.
POST/api/docs/folderCreates a new document folder.
PUT/api/docs/doc/{docId}Updates an existing document by its identifier.
PUT/api/docs/doc/{docId}/contentUpdates the content body of a document.
PUT/api/docs/folder/{folderId}Updates an existing document folder by its identifier.
DELETE/api/docs/doc/{docId}Deletes a document by its identifier.
DELETE/api/docs/folder/{folderId}Deletes a document folder by its identifier.

See also