Document Time Entry Service

Back

Overview

Document time entries record blocks of time logged by users against a specific document. Each entry captures who did the work, what type of work it was, when it was done, and how long it took.

Relates to:

All operations are tenant-aware and scoped to the current tenant.


Endpoints

Back to Sales

GET

/api/v1/DocumentTimeEntries/{id}

Returns a single time entry by its numeric identifier.

Route parameters:

Behavior:

Response:

Authorization:


GET

/api/v1/DocumentTimeEntries/order/{documentId}

Returns all time entries for a given document.

Route parameters:

Behavior:

Response:

Authorization:


POST

/api/v1/DocumentTimeEntries

Creates a new time entry against a document.

Request body (DocumentTimeEntryModel):

Behavior:

Response:

Authorization:


PUT

/api/v1/DocumentTimeEntries/{id}

Updates an existing time entry.

Route parameters:

Behavior:

Response:

Authorization:


DELETE

/api/v1/DocumentTimeEntries/{id}

Deletes a time entry by its identifier.

Route parameters:

Behavior:

Response:

Authorization:


Notes