Set Fax Tags (Tellescope)
Perform Set Fax Tags (Tellescope) through Tellescope.
set_tellescope_fax_tagswritetellescope
Inputs
- Fax Log Id
fax_log_idexpressionrequiredRequired literal value or workflow expression.
- Tags
tagstextrequiredRequired text value.
Outputs
successSuccessfax_log_idFax Log IdtagsTagserrorError
Output schema completeness: best_effort_declared
Safety
- External effect
- write
- Confirmation recommended
- No
- Retry safe
- No
- Dry run supported
- No
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"required": [
"fax_log_id",
"tags"
],
"properties": {
"tags": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"fax_log_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"tags": {},
"error": {},
"success": {},
"fax_log_id": {}
},
"additionalProperties": true
}