create_patient
Register new patients in the athenahealth system by providing required details including name, date of birth, sex, and department ID to establish medical records.
Instructions
Register a new patient in the system
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address1 | No | Street address (optional) | |
city | No | City (optional) | |
department_id | Yes | Primary department ID | |
dob | Yes | Date of birth (MM/DD/YYYY or YYYY-MM-DD) | |
No | Email address (optional) | ||
firstname | Yes | Patient first name | |
guarantor_dob | No | Guarantor date of birth (optional) | |
guarantor_firstname | No | Guarantor first name (optional) | |
guarantor_lastname | No | Guarantor last name (optional) | |
guarantor_relationship | No | Relationship to patient: 1=Self, 2=Spouse, 3=Child, 4=Other (optional) | |
home_phone | No | Home phone number (optional) | |
lastname | Yes | Patient last name | |
mobile_phone | No | Mobile phone number (optional) | |
sex | Yes | Sex (M or F) | |
state | No | State (optional) | |
zip | No | ZIP code (optional) |
Input Schema (JSON Schema)
{
"properties": {
"address1": {
"description": "Street address (optional)",
"type": "string"
},
"city": {
"description": "City (optional)",
"type": "string"
},
"department_id": {
"description": "Primary department ID",
"type": "string"
},
"dob": {
"description": "Date of birth (MM/DD/YYYY or YYYY-MM-DD)",
"type": "string"
},
"email": {
"description": "Email address (optional)",
"type": "string"
},
"firstname": {
"description": "Patient first name",
"type": "string"
},
"guarantor_dob": {
"description": "Guarantor date of birth (optional)",
"type": "string"
},
"guarantor_firstname": {
"description": "Guarantor first name (optional)",
"type": "string"
},
"guarantor_lastname": {
"description": "Guarantor last name (optional)",
"type": "string"
},
"guarantor_relationship": {
"description": "Relationship to patient: 1=Self, 2=Spouse, 3=Child, 4=Other (optional)",
"type": "string"
},
"home_phone": {
"description": "Home phone number (optional)",
"type": "string"
},
"lastname": {
"description": "Patient last name",
"type": "string"
},
"mobile_phone": {
"description": "Mobile phone number (optional)",
"type": "string"
},
"sex": {
"description": "Sex (M or F)",
"type": "string"
},
"state": {
"description": "State (optional)",
"type": "string"
},
"zip": {
"description": "ZIP code (optional)",
"type": "string"
}
},
"required": [
"firstname",
"lastname",
"dob",
"sex",
"department_id"
],
"type": "object"
}