Skip to documentation
Brightree integration

Append Patient Custom Field Value

Perform Append Patient Custom Field Value through Brightree.

View as Markdown
brightree_append_patient_custom_field_value
writebrightree

Inputs

  • patient_key
    expressionrequired
    Patient Key

    Required literal value or workflow expression.

  • field_label
    expressionrequired
    Field Label

    Required literal value or workflow expression.

  • value
    expressionrequired
    Value

    Required literal value or workflow expression.

  • delimiter
    text
    Delimiter

    Optional text value.

Outputs

  • successSuccess
  • messageMessage
  • updated_fieldsUpdated Fields
  • field_labelField Label
  • valueValue
  • 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",
    "field_label",
    "value"
  ],
  "properties": {
    "value": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "delimiter": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "field_label": {
      "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": {},
    "value": {},
    "message": {},
    "success": {},
    "field_label": {},
    "updated_fields": {}
  },
  "additionalProperties": true
}
View all Brightree actions