Skip to documentation
Essette integration

Search Patient

Perform Search Patient through Essette.

View as Markdown
essette_search_patient
readessette

Inputs

  • essette_account_id
    selectrequireddynamic options
    Essette Account Id

    Required selected identifier or value. Retrieve allowed values from the dynamic options endpoint.

    Default: "primary"

  • insurance_id
    expressionrequired
    Insurance Id

    Required literal value or workflow expression.

  • include_eligibility
    boolean
    Include Eligibility

    Optional true-or-false value.

    Default: false

  • top
    number
    Top

    Optional numeric value.

    Default: 25

Outputs

  • successSuccess
  • countCount
  • resultsResults
  • plan_idPlan Id
  • member_idMember Id
  • member_nameMember Name
  • member_birth_dateMember Birth Date
  • health_planHealth Plan
  • line_of_businessLine Of Business
  • eligibility_is_currentEligibility Is Current
  • eligibility_historyEligibility History
  • errorError
  • error_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
}
View all Essette actions