OptInOut_GetOptOutList
Check if contact numbers are opted out of communications by submitting a tenant ID and an array of phone numbers. Integrates with ServiceTitan API for accurate compliance tracking.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | Array of contact numbers to check | |
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"body": {
"description": "Array of contact numbers to check",
"items": {
"type": "string"
},
"type": "array"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"tenant",
"body"
],
"type": "object"
}