Resolve Order Alert
Perform Resolve Order Alert through ClaimSoft.
claimsoft_resolve_order_alertreadclaimsoft
Inputs
- Order Id
order_idexpressionrequiredRequired literal value or workflow expression.
- Comment Marker
comment_markertextrequiredRequired text value.
- Alert Type Id
alert_type_idtextrequiredRequired text value.
- Created By User
created_by_usertextrequiredRequired text value.
Outputs
successSuccesserrorError
Output schema completeness: best_effort_declared
Safety
- External effect
- read
- Confirmation recommended
- No
- Retry safe
- Yes
- Dry run supported
- No
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"required": [
"order_id",
"comment_marker",
"alert_type_id",
"created_by_user"
],
"properties": {
"order_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"alert_type_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"comment_marker": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"created_by_user": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"success": {}
},
"additionalProperties": true
}