Skip to documentation
Weave integration

Check Fax Tag (Weave)

Perform Check Fax Tag (Weave) through Weave.

View as Markdown
weave_fax_has_tag
writeweave

Inputs

  • fax_id
    expressionrequired
    Fax Id

    Required literal value or workflow expression.

  • tag_name
    textrequired
    Tag Name

    Required text value.

Outputs

  • successSuccess
  • fax_idFax Id
  • tag_nameTag Name
  • has_tagHas Tag
  • matching_tagsMatching Tags
  • tag_countTag Count
  • 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_id",
    "tag_name"
  ],
  "properties": {
    "fax_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "tag_name": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "fax_id": {},
    "has_tag": {},
    "success": {},
    "tag_name": {},
    "tag_count": {},
    "matching_tags": {}
  },
  "additionalProperties": true
}
View all Weave actions