location_recurring_services_get
Retrieve recurring service details from ServiceTitan API using a specific recurring service ID and tenant ID for accurate service management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Recurring service ID | |
tenant | Yes | Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Recurring service ID",
"type": "integer"
},
"tenant": {
"description": "Tenant ID",
"type": "integer"
}
},
"required": [
"id",
"tenant"
],
"type": "object"
}