Skip to documentation
Brightree integration

Create Patient From Document

Perform Create Patient From Document through Brightree.

View as Markdown
brightree_create_patient_from_document
writebrightree

Inputs

  • document_id
    expressionrequired
    Document Id

    Required literal value or workflow expression.

Outputs

  • successSuccess
  • document_idDocument Id
  • patient_idPatient Id
  • patient_namePatient Name
  • birth_dateBirth Date
  • patient_keyPatient Key
  • external_idExternal Id
  • createdCreated
  • messageMessage
  • error_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
}
View all Brightree actions