Tag Fax By Name (Weave)
Perform Tag Fax By Name (Weave) through Weave.
tag_weave_fax_by_namewriteweave
Inputs
- Fax Id
fax_idexpressionrequiredRequired literal value or workflow expression.
- Tag Name
tag_nametextrequiredRequired text value.
Outputs
successSuccessfax_idFax Idtag_nameTag Nametag_idTag Idtags_addedTags AddederrorError
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": {},
"tag_id": {},
"success": {},
"tag_name": {},
"tags_added": {}
},
"additionalProperties": true
}