Read Task Detail
Perform Read Task Detail through Brightree.
brightree_read_task_detailreadbrightree
Inputs
- Patient Key
patient_keyexpressionrequiredRequired literal value or workflow expression.
- Patient Note Key
patient_note_keyexpressionrequiredRequired literal value or workflow expression.
- Patient Note Type Key
patient_note_type_keyselectrequiredRequired selected identifier or value.
Default:
"2"Options: CMN Note ("4"), Deposit Note ("14"), Financial Note ("8"), Intake ("16"), Item Maintenance ("1"), PAR Note ("6"), Patient ("2"), Pickup Exchange WIP State ("15"), Practitioner Note ("7"), Progress Note ("13"), Referral ("10"), WIP State ("9")
Outputs
patientPatient
Output schema completeness: best_effort_declared
Safety
- External effect
- read
- Confirmation recommended
- No
- Retry safe
- Yes
- Dry run supported
- No
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"required": [
"patient_key",
"patient_note_key",
"patient_note_type_key"
],
"properties": {
"patient_key": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"patient_note_key": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"patient_note_type_key": {
"enum": [
"4",
"14",
"8",
"16",
"1",
"6",
"2",
"15",
"7",
"13",
"10",
"9"
],
"type": "string",
"default": "2",
"description": "Required selected identifier or value.",
"x-workflow-field-type": "select"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"patient": {}
},
"additionalProperties": true
}