campaign_costs_create
Create and assign daily costs to specific marketing campaigns by providing tenant ID, campaign ID, year, month, and cost details using the ServiceTitan MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
campaignId | Yes | Campaign ID | |
dailyCost | Yes | Daily Cost | |
month | Yes | Month | |
tenant | Yes | Format - int64. Tenant ID | |
year | Yes | Year |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"campaignId": {
"description": "Campaign ID",
"type": "integer"
},
"dailyCost": {
"description": "Daily Cost",
"type": "number"
},
"month": {
"description": "Month",
"type": "integer"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
},
"year": {
"description": "Year",
"type": "integer"
}
},
"required": [
"tenant",
"year",
"month",
"dailyCost",
"campaignId"
],
"type": "object"
}