Reconcile Template Schedule
Perform Reconcile Template Schedule through Brightree.
brightree_reconcile_template_schedulewritebrightree
Inputs
- Template
templateexpressionrequiredRequired literal value or workflow expression.
- Account Key
account_keytextOptional text value.
- Max Attempts
max_attemptsnumberrequiredRequired numeric value.
Default:
3 - Retry Delay Seconds
retry_delay_secondsnumberrequiredRequired numeric value.
Default:
5
Outputs
successSuccessoutcome_categoryOutcome Categoryaudit_outcomeAudit Outcometemplate_keyTemplate Keysource_sales_order_keySource Sales Order Keyprevious_next_run_datePrevious Next Run Dateexpected_next_run_dateExpected Next Run DateattemptsAttemptsmanual_review_requiredManual Review Requiredmanual_review_markedManual Review MarkedreasonReasonerrorError
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
}