Create Patient (Weave)
Perform Create Patient (Weave) through Weave.
create_weave_patientInputs
- First Name
first_nameexpressionrequiredRequired literal value or workflow expression.
- Last Name
last_nameexpressionrequiredRequired literal value or workflow expression.
- Preferred Name
preferred_nameexpressionOptional literal value or workflow expression.
- Gender
genderexpressionOptional literal value or workflow expression.
- Birthdate
birthdateexpressionOptional literal value or workflow expression.
- Phone Mobile
phone_mobileexpressionOptional literal value or workflow expression.
- Phone Home
phone_homeexpressionOptional literal value or workflow expression.
emailexpressionOptional literal value or workflow expression.
- Street
streetexpressionOptional literal value or workflow expression.
- City
cityexpressionOptional literal value or workflow expression.
- State
stateexpressionOptional literal value or workflow expression.
- Postcode
postCodeexpressionOptional literal value or workflow expression.
- Country
countryexpressionOptional literal value or workflow expression.
Outputs
successSuccessweave_contact_idWeave Contact IdcreatedCreatedalready_existsAlready ExistsmessageMessageerrorError
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": [
"first_name",
"last_name"
],
"properties": {
"city": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"email": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"state": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"gender": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"street": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"country": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"postCode": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"birthdate": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"last_name": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"first_name": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"phone_home": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"phone_mobile": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"preferred_name": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"created": {},
"message": {},
"success": {},
"already_exists": {},
"weave_contact_id": {}
},
"additionalProperties": true
}