Skip to documentation
Tellescope integration

Set Fax Tags (Tellescope)

Perform Set Fax Tags (Tellescope) through Tellescope.

View as Markdown
set_tellescope_fax_tags
writetellescope

Inputs

  • fax_log_id
    expressionrequired
    Fax Log Id

    Required literal value or workflow expression.

  • tags
    textrequired
    Tags

    Required text value.

Outputs

  • successSuccess
  • fax_log_idFax Log Id
  • tagsTags
  • errorError

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
}
View all Tellescope actions