Skip to documentation
Brightree integration

Reconcile Template Schedule

Perform Reconcile Template Schedule through Brightree.

View as Markdown
brightree_reconcile_template_schedule
writebrightree

Inputs

  • template
    expressionrequired
    Template

    Required literal value or workflow expression.

  • account_key
    text
    Account Key

    Optional text value.

  • max_attempts
    numberrequired
    Max Attempts

    Required numeric value.

    Default: 3

  • retry_delay_seconds
    numberrequired
    Retry Delay Seconds

    Required numeric value.

    Default: 5

Outputs

  • successSuccess
  • outcome_categoryOutcome Category
  • audit_outcomeAudit Outcome
  • template_keyTemplate Key
  • source_sales_order_keySource Sales Order Key
  • previous_next_run_datePrevious Next Run Date
  • expected_next_run_dateExpected Next Run Date
  • attemptsAttempts
  • manual_review_requiredManual Review Required
  • manual_review_markedManual Review Marked
  • reasonReason
  • 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": [
    "template",
    "max_attempts",
    "retry_delay_seconds"
  ],
  "properties": {
    "template": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "account_key": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "max_attempts": {
      "type": "number",
      "default": 3,
      "description": "Required numeric value.",
      "x-workflow-field-type": "number"
    },
    "retry_delay_seconds": {
      "type": "number",
      "default": 5,
      "description": "Required numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "reason": {},
    "success": {},
    "attempts": {},
    "template_key": {},
    "audit_outcome": {},
    "outcome_category": {},
    "manual_review_marked": {},
    "expected_next_run_date": {},
    "manual_review_required": {},
    "previous_next_run_date": {},
    "source_sales_order_key": {}
  },
  "additionalProperties": true
}
View all Brightree actions