Check Patient Exists
Perform Check Patient Exists through Brightree.
brightree_check_patient_existswritebrightree
Inputs
- Document Id
document_idexpressionOptional literal value or workflow expression.
- Force
forcebooleanOptional true-or-false value.
Default:
false
Outputs
successSuccessdocument_idDocument Idpatient_idPatient Idpatient_namePatient Namebirth_dateBirth DateexistsExistsready_for_patient_createReady For Patient Createexternal_idExternal Idpatient_keyPatient Keypatient_urlPatient UrlstatusStatuserror_messageError Message
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",
"properties": {
"force": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"document_id": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"exists": {},
"status": {},
"success": {},
"birth_date": {},
"patient_id": {},
"document_id": {},
"external_id": {},
"patient_key": {},
"patient_url": {},
"patient_name": {},
"error_message": {},
"ready_for_patient_create": {}
},
"additionalProperties": true
}