pricebookbulk_create
Create bulk pricebooks in ServiceTitan by specifying tenant ID and payload data for streamlined pricing management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
payload | Yes | The payload for bulk pricebook creation. This should match the expected schema for the API. | |
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"payload": {
"additionalProperties": false,
"description": "The payload for bulk pricebook creation. This should match the expected schema for the API.",
"properties": {},
"type": "object"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"tenant",
"payload"
],
"type": "object"
}