purchase_orders_create
Generate and manage purchase orders in ServiceTitan by submitting tenant-specific requests through the MCP server, streamlining procurement processes.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | No | Request Body | |
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"description": "Request Body",
"properties": {},
"type": "object"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"tenant"
],
"type": "object"
}