Skip to documentation
Brightree integration

Calculate Resupply Dates

Perform Calculate Resupply Dates through Brightree.

View as Markdown
brightree_calculate_resupply_dates
readbrightree

Inputs

  • carrier_name
    expression
    Carrier Name

    Optional literal value or workflow expression.

  • task_date_needed
    expression
    Task Date Needed

    Optional literal value or workflow expression.

  • scheduled_date
    expression
    Scheduled Date

    Optional literal value or workflow expression.

  • source_so_key
    expression
    Source So Key

    Optional literal value or workflow expression.

Outputs

  • new_so_actual_dateNew So Actual Date
  • source_so_keySource So Key
  • new_so_scheduled_dateNew So Scheduled Date
  • next_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
}
View all Brightree actions