Skip to documentation
Brightree integration

Create Patient Note (If Not Exists)

Perform Create Patient Note (If Not Exists) through Brightree.

View as Markdown
brightree_create_patient_note_if_not_exists
writebrightree

Inputs

  • patient_key
    expression
    Patient Key

    Optional literal value or workflow expression.

  • note_reason
    text
    Note Reason

    Optional text value.

  • subject
    text
    Subject

    Optional text value.

  • description
    textarea
    Description

    Optional text value.

  • severity
    text
    Severity

    Optional text value.

  • state
    text
    State

    Optional text value.

  • status
    text
    Status

    Optional text value.

  • date_needed
    text
    Date Needed

    Optional text value.

  • assigned_to_name
    text
    Assigned To Name

    Optional text value.

  • condition_field
    expression
    Condition Field

    Optional literal value or workflow expression.

  • skip_if_match
    text
    Skip If Match

    Optional text value.

  • description_prepend_if_exists
    textarea
    Description Prepend If Exists

    Optional text value.

  • description_append_if_exists
    textarea
    Description Append If Exists

    Optional text value.

  • skip_if_match_fields
    text
    Skip If Match Fields

    Optional text value.

    Default: "title,text"

  • skip_if_entry_present
    boolean
    Skip If Entry Present

    Optional true-or-false value.

    Default: false

  • dry_run
    boolean
    Dry Run

    Optional true-or-false value.

    Default: false

Outputs

No named outputs are declared for this action.

Output schema completeness: unknown

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",
  "properties": {
    "state": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "status": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "dry_run": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "subject": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "severity": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "date_needed": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "description": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "textarea"
    },
    "note_reason": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "patient_key": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "skip_if_match": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "condition_field": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "assigned_to_name": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "skip_if_match_fields": {
      "type": "string",
      "default": "title,text",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "skip_if_entry_present": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "description_append_if_exists": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "textarea"
    },
    "description_prepend_if_exists": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "textarea"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {},
  "additionalProperties": true
}
View all Brightree actions