Create Patient From Document
Perform Create Patient From Document through Brightree.
brightree_create_patient_from_documentwritebrightree
Inputs
- Document Id
document_idexpressionrequiredRequired literal value or workflow expression.
Outputs
successSuccessdocument_idDocument Idpatient_idPatient Idpatient_namePatient Namebirth_dateBirth Datepatient_keyPatient Keyexternal_idExternal IdcreatedCreatedmessageMessageerror_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",
"required": [
"document_id"
],
"properties": {
"document_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"created": {},
"message": {},
"success": {},
"birth_date": {},
"patient_id": {},
"document_id": {},
"external_id": {},
"patient_key": {},
"patient_name": {},
"error_message": {}
},
"additionalProperties": true
}