Check Fax Tag (Weave)
Perform Check Fax Tag (Weave) through Weave.
weave_fax_has_tagwriteweave
Inputs
- Fax Id
fax_idexpressionrequiredRequired literal value or workflow expression.
- Tag Name
tag_nametextrequiredRequired text value.
Outputs
successSuccessfax_idFax Idtag_nameTag Namehas_tagHas Tagmatching_tagsMatching Tagstag_countTag CounterrorError
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
}