...
Code Block | ||||
---|---|---|---|---|
| ||||
<zohobooks.createTimeEntry> <taskId>{$ctx:taskId}</taskId> <isBillable>{$ctx:isBillable}</isBillable> <logTime>{$ctx:logTime}</logTime> <userId>{$ctx:userId}</userId> <beginTime>{$ctx:beginTime}</beginTime> <logDate>{$ctx:logDate}</logDate> <startTimer>{$ctx:startTimer}</startTimer> <projectId>{$ctx:projectId}</projectId> <notes>{$ctx:notes}</notes> <endTime>{$ctx:endTime}</endTime> </zohobooks.createTimeEntry> |
Properties
The ID of the task.taskId:
Whether it is billable or not.isBillable:
The time the user spent on this task. Either send this attribute or begin and end time attributes.logTime:
The ID of the user.userId:
The time the user started working on this task.beginTime:
The date on which the user spent on the task.logDate:
Start timer.startTimer:
The ID of the project.projectId:
Description of the work done.notes:
The time the user stopped working on this task.endTime:
...
Code Block | ||||
---|---|---|---|---|
| ||||
<zohobooks.getTimeEntry> <timeEntryId>{$ctx:timeEntryId}</timeEntryId> </zohobooks.getTimeEntry> |
Properties
The ID of the logged time entry.timeEntryId:
...
Code Block | ||||
---|---|---|---|---|
| ||||
<zohobooks.listTimeEntries> <sortColumn>{$ctx:sortColumn}</sortColumn> <fromDate>{$ctx:fromDate}</fromDate> <page>{$ctx:page}</page> <userId>{$ctx:userId}</userId> <perPage>{$ctx:perPage}</perPage> <projectId>{$ctx:projectId}</projectId> <filterBy>{$ctx:filterBy}</filterBy> <toDate>{$ctx:toDate}</toDate> </zohobooks.listTimeEntries> |
Properties
sortColumn:
Sort time entries. Allowed Values: project_name, task_name, user_name, log_date, timer_started_at and customer_namefromDate:
The date from which the time entries logged are to be fetched.page:
Number of pages to be returned - Pagination value.userId:
Search time entries by user_id.perPage:
Specifies how many entries should be returned in the response.projectId:
Search time entries by project_id.filterBy:
Filter time entries by date and status. Allowed Values: Date.All, Date.Today, Date.ThisWeek and etc.toDate:
The date up to which the time entries logged are to be fetched.
...
Related Zoho Books documentation
https://www.zoho.com/books/api/v3/projects/timeentries/#list-time-entries.
Anchor | ||||
---|---|---|---|---|
|
...