Skip to documentation
ClaimSoft integration

Check Eligibility

Perform Check Eligibility through ClaimSoft.

View as Markdown
claimsoft_check_eligibility
writeclaimsoft

Inputs

  • insured_id
    expressionrequired
    Insured Id

    Required literal value or workflow expression.

  • date_of_service
    expressionrequired
    Date Of Service

    Required literal value or workflow expression.

  • patient_id
    expression
    Patient Id

    Optional literal value or workflow expression.

Outputs

  • successSuccess
  • errorError

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": [
    "insured_id",
    "date_of_service"
  ],
  "properties": {
    "insured_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "date_of_service": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {}
  },
  "additionalProperties": true
}
View all ClaimSoft actions