Get Patient Notes
Perform Get Patient Notes through Bonafide.
bonafide_get_patient_notesreadbonafide
Inputs
- Customer Id
customer_idexpressionrequiredRequired literal value or workflow expression.
Outputs
successSuccesscustomer_idCustomer IdnotesNotestotal_countTotal CountmessageMessageerror_messageError MessageerrorError
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": [
"customer_id"
],
"properties": {
"customer_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"notes": {},
"message": {},
"success": {},
"customer_id": {},
"total_count": {},
"error_message": {}
},
"additionalProperties": true
}