Calculate Resupply Dates
Perform Calculate Resupply Dates through Brightree.
brightree_calculate_resupply_datesreadbrightree
Inputs
- Carrier Name
carrier_nameexpressionOptional literal value or workflow expression.
- Task Date Needed
task_date_neededexpressionOptional literal value or workflow expression.
- Scheduled Date
scheduled_dateexpressionOptional literal value or workflow expression.
- Source So Key
source_so_keyexpressionOptional literal value or workflow expression.
Outputs
new_so_actual_dateNew So Actual Datesource_so_keySource So Keynew_so_scheduled_dateNew So Scheduled Datenext_task_date_neededNext Task Date Needed
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",
"properties": {
"carrier_name": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"source_so_key": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"scheduled_date": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"task_date_needed": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"source_so_key": {},
"new_so_actual_date": {},
"new_so_scheduled_date": {},
"next_task_date_needed": {}
},
"additionalProperties": true
}