projects_create_message
Generate and submit messages within ServiceTitan projects by specifying a tenant ID, project ID, and message content, enabling effective communication and updates.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Format - int64. | |
message | Yes | The message to create | |
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.",
"type": "integer"
},
"message": {
"description": "The message to create",
"type": "string"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"id",
"tenant",
"message"
],
"type": "object"
}