Skip to documentation
WellCare integration

Check Duplicate Prior Auth

Perform Check Duplicate Prior Auth through WellCare.

View as Markdown
wellcare_check_duplicate_prior_auth
writewellcare

Inputs

  • request_artifact
    expressionrequired
    Request Artifact

    Required literal value or workflow expression.

  • lookback_days
    number
    Lookback Days

    Optional numeric value.

    Default: 30

  • max_candidate_claims
    number
    Max Candidate Claims

    Optional numeric value.

    Default: 10

Outputs

  • successSuccess
  • duplicate_foundDuplicate Found
  • match_confidenceMatch Confidence
  • matched_claim_countMatched Claim Count
  • matchesMatches
  • details_completeDetails Complete
  • safe_reasonSafe Reason
  • errorError
  • error_messageError Message

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": [
    "request_artifact"
  ],
  "properties": {
    "lookback_days": {
      "type": "number",
      "default": 30,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "request_artifact": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "max_candidate_claims": {
      "type": "number",
      "default": 10,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "matches": {},
    "success": {},
    "safe_reason": {},
    "error_message": {},
    "duplicate_found": {},
    "details_complete": {},
    "match_confidence": {},
    "matched_claim_count": {}
  },
  "additionalProperties": true
}
View all WellCare actions