services_create
Create new services in ServiceTitan by specifying tenant ID, service code, display name, and other details like pricing, warranty, categories, and more. Facilitates service management and customization.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| account | No | Account Number | |
| active | No | Is Active | |
| addOnMemberPrice | No | Add-On Member Price | |
| addOnPrice | No | Add-On Price | |
| bonus | No | Bonus Amount | |
| businessUnitId | No | Business Unit ID | |
| categoryIds | No | Array of Category IDs | |
| code | Yes | Service Code | |
| commissionBonus | No | Commission Bonus Amount | |
| cost | No | Service Cost | |
| crossSaleGroup | No | Cross-Sale Group | |
| description | No | Service Description | |
| displayName | Yes | Service Display Name | |
| externalData | No | External Data Key-Value Pairs | |
| externalId | No | External Service ID | |
| hours | No | Service Hours | |
| isLabor | No | Is Labor Service | |
| memberPrice | No | Service Member Price | |
| paysCommission | No | Pays Commission | |
| price | No | Service Price | |
| recommendationIds | No | Array of Recommendation IDs | |
| soldByCommission | No | Commission Percentage | |
| source | No | Service Source | |
| taxable | No | Is Taxable | |
| tenant | Yes | Format - int64. Tenant ID | |
| upgradeIds | No | Array of Upgrade IDs | |
| warrantyDescription | No | Warranty Description | |
| warrantyDuration | No | Warranty Duration |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"account": {
"description": "Account Number",
"type": "string"
},
"active": {
"description": "Is Active",
"type": "boolean"
},
"addOnMemberPrice": {
"description": "Add-On Member Price",
"type": "number"
},
"addOnPrice": {
"description": "Add-On Price",
"type": "number"
},
"bonus": {
"description": "Bonus Amount",
"type": "number"
},
"businessUnitId": {
"description": "Business Unit ID",
"type": "integer"
},
"categoryIds": {
"description": "Array of Category IDs",
"items": {
"type": "integer"
},
"type": "array"
},
"code": {
"description": "Service Code",
"type": "string"
},
"commissionBonus": {
"description": "Commission Bonus Amount",
"type": "number"
},
"cost": {
"description": "Service Cost",
"type": "number"
},
"crossSaleGroup": {
"description": "Cross-Sale Group",
"type": "string"
},
"description": {
"description": "Service Description",
"type": "string"
},
"displayName": {
"description": "Service Display Name",
"type": "string"
},
"externalData": {
"description": "External Data Key-Value Pairs",
"items": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"key",
"value"
],
"type": "object"
},
"type": "array"
},
"externalId": {
"description": "External Service ID",
"type": "string"
},
"hours": {
"description": "Service Hours",
"type": "number"
},
"isLabor": {
"description": "Is Labor Service",
"type": "boolean"
},
"memberPrice": {
"description": "Service Member Price",
"type": "number"
},
"paysCommission": {
"description": "Pays Commission",
"type": "boolean"
},
"price": {
"description": "Service Price",
"type": "number"
},
"recommendationIds": {
"description": "Array of Recommendation IDs",
"items": {
"type": "integer"
},
"type": "array"
},
"soldByCommission": {
"description": "Commission Percentage",
"type": "number"
},
"source": {
"description": "Service Source",
"type": "string"
},
"taxable": {
"description": "Is Taxable",
"type": "boolean"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
},
"upgradeIds": {
"description": "Array of Upgrade IDs",
"items": {
"type": "integer"
},
"type": "array"
},
"warrantyDescription": {
"description": "Warranty Description",
"type": "string"
},
"warrantyDuration": {
"description": "Warranty Duration",
"type": "integer"
}
},
"required": [
"tenant",
"code",
"displayName"
],
"type": "object"
}