invoice_templates_create
Generate customized invoice templates by specifying tenant ID and payload data through the ServiceTitan API integration.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| payload | Yes | The payload to send in the request body | |
| tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"payload": {
"additionalProperties": {},
"description": "The payload to send in the request body",
"type": "object"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"tenant",
"payload"
],
"type": "object"
}