purchase_orders_approve_request
Approves purchase order requests in ServiceTitan by submitting the request ID and tenant ID, ensuring efficient workflow management through API integration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The purchase order request ID (int64). | |
tenant | Yes | The tenant ID (int64). |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The purchase order request ID (int64).",
"type": "integer"
},
"tenant": {
"description": "The tenant ID (int64).",
"type": "integer"
}
},
"required": [
"id",
"tenant"
],
"type": "object"
}