Skip to documentation
Brightree integration

Write Prepared Patient Updates

Perform Write Prepared Patient Updates through Brightree.

View as Markdown
brightree_write_prepared_patient_updates
writebrightree

Inputs

  • patient_key
    expressionrequired
    Patient Key

    Required literal value or workflow expression.

  • patient_updates
    jsonrequired
    Patient Updates

    Required JSON value.

Outputs

  • successSuccess
  • patient_keyPatient Key
  • missing_fieldsMissing Fields
  • has_missing_source_fieldsHas Missing Source Fields
  • updated_fieldsUpdated Fields
  • messagesMessages
  • error_messageError Message
  • 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": [
    "patient_key",
    "patient_updates"
  ],
  "properties": {
    "patient_key": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_updates": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "messages": {},
    "patient_key": {},
    "error_message": {},
    "missing_fields": {},
    "updated_fields": {},
    "has_missing_source_fields": {}
  },
  "additionalProperties": true
}
View all Brightree actions