Skip to documentation
Brightree integration

Create Patient

Perform Create Patient through Brightree.

View as Markdown
brightree_create_patient
writebrightree

Inputs

  • first_name
    text
    First Name

    Optional text value.

  • last_name
    text
    Last Name

    Optional text value.

  • date_of_birth
    date
    Date Of Birth

    Optional date in YYYY-MM-DD format.

Outputs

No named outputs are declared for this action.

Output schema completeness: unknown

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": {
    "last_name": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "first_name": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "date_of_birth": {
      "type": "string",
      "format": "date",
      "description": "Optional date in YYYY-MM-DD format.",
      "x-workflow-field-type": "date"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {},
  "additionalProperties": true
}
View all Brightree actions