gps_create
Generate and submit GPS data to the ServiceTitan API by specifying tenant ID, GPS provider, and relevant request body parameters.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | Request body for creating GPS data. | |
gps_provider | Yes | The GPS Provider | |
tenant | Yes | Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": true,
"description": "Request body for creating GPS data.",
"properties": {},
"type": "object"
},
"gps_provider": {
"description": "The GPS Provider",
"type": "string"
},
"tenant": {
"description": "Tenant ID",
"type": "integer"
}
},
"required": [
"tenant",
"gps_provider",
"body"
],
"type": "object"
}