create_time_entry
Log work hours in Autotask by entering resource details, date worked, hours completed, and activity summary for accurate time tracking.
Instructions
Create a time entry in Autotask
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dateWorked | Yes | Date worked (YYYY-MM-DD format) | |
endDateTime | No | End date/time (ISO format) | |
hoursWorked | Yes | Number of hours worked | |
internalNotes | No | Internal notes for the time entry | |
resourceID | Yes | Resource ID (user) logging the time | |
startDateTime | No | Start date/time (ISO format) | |
summaryNotes | Yes | Summary notes for the time entry | |
taskID | No | Task ID for the time entry (optional, for project work) | |
ticketID | No | Ticket ID for the time entry |
Input Schema (JSON Schema)
{
"properties": {
"dateWorked": {
"description": "Date worked (YYYY-MM-DD format)",
"type": "string"
},
"endDateTime": {
"description": "End date/time (ISO format)",
"type": "string"
},
"hoursWorked": {
"description": "Number of hours worked",
"type": "number"
},
"internalNotes": {
"description": "Internal notes for the time entry",
"type": "string"
},
"resourceID": {
"description": "Resource ID (user) logging the time",
"type": "number"
},
"startDateTime": {
"description": "Start date/time (ISO format)",
"type": "string"
},
"summaryNotes": {
"description": "Summary notes for the time entry",
"type": "string"
},
"taskID": {
"description": "Task ID for the time entry (optional, for project work)",
"type": "number"
},
"ticketID": {
"description": "Ticket ID for the time entry",
"type": "number"
}
},
"required": [
"resourceID",
"dateWorked",
"hoursWorked",
"summaryNotes"
],
"type": "object"
}