Skip to documentation
Brightree integration

Update Patient Gender If Empty

Perform Update Patient Gender If Empty through Brightree.

View as Markdown
brightree_update_patient_gender_if_empty
writebrightree

Inputs

  • patient_key
    expressionrequired
    Patient Key

    Required literal value or workflow expression.

  • gender
    expressionrequired
    Gender

    Required literal value or workflow expression.

Outputs

  • successSuccess
  • updatedUpdated
  • skipped_reasonSkipped Reason
  • 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",
    "gender"
  ],
  "properties": {
    "gender": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_key": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "updated": {},
    "skipped_reason": {}
  },
  "additionalProperties": true
}
View all Brightree actions