Create Patient Note (If Not Exists)
Perform Create Patient Note (If Not Exists) through Brightree.
brightree_create_patient_note_if_not_existswritebrightree
Inputs
- Patient Key
patient_keyexpressionOptional literal value or workflow expression.
- Note Reason
note_reasontextOptional text value.
- Subject
subjecttextOptional text value.
- Description
descriptiontextareaOptional text value.
- Severity
severitytextOptional text value.
- State
statetextOptional text value.
- Status
statustextOptional text value.
- Date Needed
date_neededtextOptional text value.
- Assigned To Name
assigned_to_nametextOptional text value.
- Condition Field
condition_fieldexpressionOptional literal value or workflow expression.
- Skip If Match
skip_if_matchtextOptional text value.
- Description Prepend If Exists
description_prepend_if_existstextareaOptional text value.
- Description Append If Exists
description_append_if_existstextareaOptional text value.
- Skip If Match Fields
skip_if_match_fieldstextOptional text value.
Default:
"title,text" - Skip If Entry Present
skip_if_entry_presentbooleanOptional true-or-false value.
Default:
false - Dry Run
dry_runbooleanOptional 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
}