Skip to documentation
Authorizations integration

Check Cancellation Or Void Ready

Perform Check Cancellation Or Void Ready through Authorizations.

View as Markdown
authorization_check_cancellation_ready
write

Inputs

  • document_id
    expressionrequired
    Document Id

    Required literal value or workflow expression.

  • auth_type
    expressionrequired
    Auth Type

    Required literal value or workflow expression.

  • auth_number
    expression
    Auth Number

    Optional literal value or workflow expression.

  • received_date_threshold_hours
    number
    Received Date Threshold Hours

    Optional numeric value.

    Default: 2

Outputs

  • successSuccess
  • should_processShould Process
  • skip_reasonSkip Reason
  • mark_completeMark Complete
  • 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": [
    "document_id",
    "auth_type"
  ],
  "properties": {
    "auth_type": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "auth_number": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "document_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "received_date_threshold_hours": {
      "type": "number",
      "default": 2,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "skip_reason": {},
    "mark_complete": {},
    "should_process": {}
  },
  "additionalProperties": true
}
View all Authorizations actions