Check Duplicate Prior Auth
Perform Check Duplicate Prior Auth through WellCare.
wellcare_check_duplicate_prior_authwritewellcare
Inputs
- Request Artifact
request_artifactexpressionrequiredRequired literal value or workflow expression.
- Lookback Days
lookback_daysnumberOptional numeric value.
Default:
30 - Max Candidate Claims
max_candidate_claimsnumberOptional numeric value.
Default:
10
Outputs
successSuccessduplicate_foundDuplicate Foundmatch_confidenceMatch Confidencematched_claim_countMatched Claim CountmatchesMatchesdetails_completeDetails Completesafe_reasonSafe ReasonerrorErrorerror_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
}