images_get
Retrieve pricebook images from the ServiceTitan API by specifying the tenant ID and storage path for efficient image access and management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | No | The storage path of the pricebook image to retrieve | |
tenant | Yes | Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"path": {
"description": "The storage path of the pricebook image to retrieve",
"type": "string"
},
"tenant": {
"description": "Tenant ID",
"type": "integer"
}
},
"required": [
"tenant"
],
"type": "object"
}