...
Code Block |
---|
language | xml |
---|
title | createTimeEntry |
---|
|
<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
taskId:
The ID of the task.isBillable:
Whether it is billable or not.logTime:
The time the user spent on this task. Either send this attribute or begin and end time attributes.userId:
The ID of the user.beginTime:
The time the user started working on this task.logDate:
The date on which the user spent on the task.startTimer:
Start timer.projectId:
The ID of the project.notes:
Description of the work done.endTime:
The time the user stopped working on this task.
...
Related Zoho Books documentation
https://www.zoho.com/books/api/v3/projects/timeentries/#log-time-entries
Retrieving
details of a time entry...
Code Block |
---|
language | xml |
---|
title | getTimeEntry |
---|
|
<zohobooks.getTimeEntry>
<timeEntryId>{$ctx:timeEntryId}</timeEntryId>
</zohobooks.getTimeEntry> |
Properties
timeEntryId:
The ID of the logged time entry.
...
Related Zoho Books documentation
https://www.zoho.com/books/api/v3/projects/timeentries/#get-a-time-entry
Anchor |
---|
| listTimeEntries |
---|
| listTimeEntries |
---|
|
Retrieving all time entries with pagination
...
Code Block |
---|
language | xml |
---|
title | listTimeEntries |
---|
|
<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 |
---|
| sampleconfiguration |
---|
| sampleconfiguration |
---|
|
Sample configuration
...