Save Patient
Perform Save Patient through ClaimSoft.
claimsoft_save_patientwriteclaimsoft
Inputs
- Patient Data
patient_dataexpressionrequiredRequired literal value or workflow expression.
- Billing Location Ids
billing_location_idsjsonrequiredRequired JSON value.
- Patient Id
patient_idexpressionOptional literal value or workflow expression.
- Patient Defaults
patient_defaultsjsonOptional JSON value.
- Demographics Override
demographics_overridejsonOptional JSON value.
Outputs
successSuccesspatient_idPatient Idclaimsoft_patient_idClaimsoft Patient IdcreatedCreatedis_duplicateIs Duplicatepatient_urlPatient UrlmessageMessageerrorErrorerror_kindError Kind
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": [
"patient_data",
"billing_location_ids"
],
"properties": {
"patient_id": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"patient_data": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"patient_defaults": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
},
"billing_location_ids": {
"description": "Required JSON value.",
"x-workflow-field-type": "json"
},
"demographics_override": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"created": {},
"message": {},
"success": {},
"error_kind": {},
"patient_id": {},
"patient_url": {},
"is_duplicate": {},
"claimsoft_patient_id": {}
},
"additionalProperties": true
}