projects_update
Update project details in ServiceTitan by modifying ID, status, manager assignments, and custom fields. Streamline project management and ensure data accuracy.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
actualCompletionDate | No | Project Actual Completion Date | |
businessUnitIds | No | Business Unit IDs | |
customFields | No | Custom Fields | |
customerId | No | Customer ID | |
externalData | No | External Data | |
id | Yes | Format - int64. Project ID | |
jobIds | No | Job IDs | |
locationId | No | Location ID | |
name | No | Project Name | |
number | No | Project Number | |
projectManagerIds | No | Project Manager IDs | |
projectTypeId | No | Project Type ID | |
startDate | No | Project Start Date | |
status | No | Project Status | |
statusId | No | Project Status ID | |
subStatus | No | Project Sub Status | |
subStatusId | No | Project Sub Status ID | |
summary | No | Project Summary | |
targetCompletionDate | No | Project Target Completion Date | |
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"actualCompletionDate": {
"description": "Project Actual Completion Date",
"type": "string"
},
"businessUnitIds": {
"description": "Business Unit IDs",
"items": {
"type": "integer"
},
"type": "array"
},
"customFields": {
"description": "Custom Fields",
"items": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"typeId": {
"type": "integer"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"customerId": {
"description": "Customer ID",
"type": "integer"
},
"externalData": {
"description": "External Data",
"items": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"id": {
"description": "Format - int64. Project ID",
"type": "integer"
},
"jobIds": {
"description": "Job IDs",
"items": {
"type": "integer"
},
"type": "array"
},
"locationId": {
"description": "Location ID",
"type": "integer"
},
"name": {
"description": "Project Name",
"type": "string"
},
"number": {
"description": "Project Number",
"type": "string"
},
"projectManagerIds": {
"description": "Project Manager IDs",
"items": {
"type": "integer"
},
"type": "array"
},
"projectTypeId": {
"description": "Project Type ID",
"type": "integer"
},
"startDate": {
"description": "Project Start Date",
"type": "string"
},
"status": {
"description": "Project Status",
"type": "string"
},
"statusId": {
"description": "Project Status ID",
"type": "integer"
},
"subStatus": {
"description": "Project Sub Status",
"type": "string"
},
"subStatusId": {
"description": "Project Sub Status ID",
"type": "integer"
},
"summary": {
"description": "Project Summary",
"type": "string"
},
"targetCompletionDate": {
"description": "Project Target Completion Date",
"type": "string"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"id",
"tenant"
],
"type": "object"
}