Skip to documentation
Colorado Medicaid integration

Check Eligibility

Perform Check Eligibility through Colorado Medicaid.

View as Markdown
colorado_medicaid_check_eligibility
writecolorado_medicaid

Inputs

  • enabled
    boolean
    Enabled

    Optional true-or-false value.

    Default: true

  • member_id
    expressionrequired
    Member Id

    Required literal value or workflow expression.

  • service_start_date
    expression
    Service Start Date

    Optional literal value or workflow expression.

  • service_end_date
    expression
    Service End Date

    Optional literal value or workflow expression.

  • skip_reason
    expression
    Skip Reason

    Optional literal value or workflow expression.

Outputs

  • successSuccess
  • statusStatus
  • is_eligibleIs Eligible
  • coverage_detailsCoverage Details
  • errorError
  • error_reasonError Reason
  • lookup_errorLookup Error
  • captcha_failure_stageCaptcha Failure Stage
  • captcha_diagnostic_screenshotCaptcha Diagnostic Screenshot
  • captcha_diagnostic_screenshot_error_typeCaptcha Diagnostic Screenshot Error Type
  • skippedSkipped
  • skip_reasonSkip Reason

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": [
    "member_id"
  ],
  "properties": {
    "enabled": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "member_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "skip_reason": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "service_end_date": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "service_start_date": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "status": {},
    "skipped": {},
    "success": {},
    "is_eligible": {},
    "skip_reason": {},
    "error_reason": {},
    "lookup_error": {},
    "coverage_details": {},
    "captcha_failure_stage": {},
    "captcha_diagnostic_screenshot": {},
    "captcha_diagnostic_screenshot_error_type": {}
  },
  "additionalProperties": true
}
View all Colorado Medicaid actions