Skip to documentation
Brightree integration

Set Patient Dropdowns

Perform Set Patient Dropdowns through Brightree.

View as Markdown
brightree_set_patient_dropdowns
writebrightree

Inputs

  • patient_key
    expressionrequired
    Patient Key

    Required literal value or workflow expression.

  • branch_office
    expression
    Branch Office

    Optional literal value or workflow expression.

  • account_group
    expression
    Account Group

    Optional literal value or workflow expression.

  • pos
    expression
    Pos

    Optional literal value or workflow expression.

  • skip
    boolean
    Skip

    Optional true-or-false value.

    Default: false

  • dry_run
    boolean
    Dry Run

    Optional true-or-false value.

    Default: false

Outputs

  • successSuccess
  • messageMessage
  • updated_fieldsUpdated Fields
  • verification_detailsVerification Details
  • branch_officeBranch Office
  • account_groupAccount Group
  • posPos
  • skippedSkipped
  • errorError

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",
  "required": [
    "patient_key"
  ],
  "properties": {
    "pos": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "skip": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "dry_run": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "patient_key": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "account_group": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "branch_office": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "pos": {},
    "error": {},
    "message": {},
    "skipped": {},
    "success": {},
    "account_group": {},
    "branch_office": {},
    "updated_fields": {},
    "verification_details": {}
  },
  "additionalProperties": true
}
View all Brightree actions