technician_shifts_bulk_delete
Delete multiple technician shifts in bulk by specifying shift IDs and tenant details using the ServiceTitan MCP Server. Streamlines shift management and ensures precise data removal.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deletedIds | No | Array of technician shift IDs to delete | |
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"deletedIds": {
"description": "Array of technician shift IDs to delete",
"items": {
"type": "integer"
},
"type": "array"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"tenant"
],
"type": "object"
}