Skip to documentation
Brightree integration

Set Patient Account Group

Perform Set Patient Account Group through Brightree.

View as Markdown
brightree_set_patient_account_group
writebrightree

Inputs

  • patient_key
    expressionrequired
    Patient Key

    Required literal value or workflow expression.

  • account_group
    expressionrequired
    Account Group

    Required literal value or workflow expression.

Outputs

  • successSuccess
  • messageMessage
  • updated_fieldsUpdated Fields
  • account_groupAccount Group
  • 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",
    "account_group"
  ],
  "properties": {
    "patient_key": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "account_group": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "message": {},
    "success": {},
    "account_group": {},
    "updated_fields": {}
  },
  "additionalProperties": true
}
View all Brightree actions