Skip to documentation
Brightree integration

Check Patient Exists

Perform Check Patient Exists through Brightree.

View as Markdown
brightree_check_patient_exists
writebrightree

Inputs

  • document_id
    expression
    Document Id

    Optional literal value or workflow expression.

  • force
    boolean
    Force

    Optional true-or-false value.

    Default: false

Outputs

  • successSuccess
  • document_idDocument Id
  • patient_idPatient Id
  • patient_namePatient Name
  • birth_dateBirth Date
  • existsExists
  • ready_for_patient_createReady For Patient Create
  • external_idExternal Id
  • patient_keyPatient Key
  • patient_urlPatient Url
  • statusStatus
  • 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",
  "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
}
View all Brightree actions