timesheets_create_job_timesheet
Generate and manage job timesheets in ServiceTitan by specifying tenant and job IDs, ensuring accurate tracking and reporting of work hours.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
job | Yes | Format - int64. The job ID | |
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"job": {
"description": "Format - int64. The job ID",
"type": "integer"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"tenant",
"job"
],
"type": "object"
}