timesheets_update_job_timesheet
Update job timesheet data in ServiceTitan by specifying tenant, job, and timesheet IDs, along with the relevant payload for modifications.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Format - int64. The job timesheet ID | |
job | Yes | Format - int64. The job ID | |
payload | No | The timesheet data to update | |
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Format - int64. The job timesheet ID",
"type": "integer"
},
"job": {
"description": "Format - int64. The job ID",
"type": "integer"
},
"payload": {
"additionalProperties": {},
"description": "The timesheet data to update",
"type": "object"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"tenant",
"job",
"id"
],
"type": "object"
}