Copy Sales Order
Perform Copy Sales Order through Brightree.
brightree_copy_sales_orderwritebrightree
Inputs
- Patient Key
patient_keyexpressionOptional literal value or workflow expression.
- Source So Key
source_so_keyexpressionOptional literal value or workflow expression.
- Scheduled Date
scheduled_dateexpressionOptional literal value or workflow expression.
- Actual Date
actual_dateexpressionOptional literal value or workflow expression.
- Wip State
wip_statetextOptional text value.
- Classification
classificationselectdynamic optionsOptional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.
- Dry Run
dry_runbooleanOptional true-or-false value.
Default:
false
Outputs
new_so_keyNew So Key
Output schema completeness: best_effort_declared
Safety
- External effect
- write
- Confirmation recommended
- No
- Retry safe
- No
- Dry run supported
- Yes
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"properties": {
"dry_run": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"wip_state": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"actual_date": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"patient_key": {
"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"
},
"classification": {
"type": "string",
"description": "Optional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.",
"x-dynamic-options": true,
"x-workflow-field-type": "select"
},
"scheduled_date": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"new_so_key": {}
},
"additionalProperties": true
}