Search Patient
Perform Search Patient through Essette.
essette_search_patientreadessette
Inputs
- Essette Account Id
essette_account_idselectrequireddynamic optionsRequired selected identifier or value. Retrieve allowed values from the dynamic options endpoint.
Default:
"primary" - Insurance Id
insurance_idexpressionrequiredRequired literal value or workflow expression.
- Include Eligibility
include_eligibilitybooleanOptional true-or-false value.
Default:
false - Top
topnumberOptional numeric value.
Default:
25
Outputs
successSuccesscountCountresultsResultsplan_idPlan Idmember_idMember Idmember_nameMember Namemember_birth_dateMember Birth Datehealth_planHealth Planline_of_businessLine Of Businesseligibility_is_currentEligibility Is Currenteligibility_historyEligibility HistoryerrorErrorerror_messageError Message
Output schema completeness: best_effort_declared
Safety
- External effect
- read
- Confirmation recommended
- No
- Retry safe
- Yes
- Dry run supported
- No
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"required": [
"essette_account_id",
"insurance_id"
],
"properties": {
"top": {
"type": "number",
"default": 25,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"insurance_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"essette_account_id": {
"type": "string",
"default": "primary",
"description": "Required selected identifier or value. Retrieve allowed values from the dynamic options endpoint.",
"x-dynamic-options": true,
"x-workflow-field-type": "select"
},
"include_eligibility": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"count": {},
"error": {},
"plan_id": {},
"results": {},
"success": {},
"member_id": {},
"health_plan": {},
"member_name": {},
"error_message": {},
"line_of_business": {},
"member_birth_date": {},
"eligibility_history": {},
"eligibility_is_current": {}
},
"additionalProperties": true
}