suppressions_get
Retrieve email suppression data for a specific tenant by providing the tenant ID and email address, ensuring accurate communication management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Yes | Format - email. | ||
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"email": {
"description": "Format - email.",
"format": "email",
"type": "string"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"email",
"tenant"
],
"type": "object"
}