Incremental Update Subscriber

Incrementally update a subscriber along with associated dependents, coverages, and accumulators.

The subscriber data is specified in the body of the request. The data is a JSON object conforming to the DI file specification for eligibility, coverages, and accumulators accordingly.

When the call is accepted it returns an operations URL that the requesting client uses to track the status of the request.

Sample Request Format


PATCH [base URL]/eligibility

{
“PayorName”: “”,
“SSN”: “”,
“MemberID”: “”,
“AltMemberID”: “”.
“GroupNumber”: “”,
“GroupName”: “”,
“SeqNumber”: ””,
“Salary”: “”,
“Coverages”:
[
{
“ProdID”: “”,
“CovTypeName”: “”,
“CovTypeDesc”: “”,
“CovEffDate”: “”,
“CovTermDate”: “”,
“CovVolume”: “”
}
],
“Accumulators”:
[
{
“Accum_Name”: “”,
“Accum_Desc”: “”,
“CoverageType”: “”,
“SpecificType”: “”,
“CurrentAmount”: “”,
“MaximumAmount”: “”
}
],
Dependents:
[
{
“PayorName”: “”,
“GroupNumber”: “”,
“GroupName”: “”,
“DepSSN”: “”,
“DepMemberID”: “”,
“DepAltMemberID”: “”,
“SeqNumber”: ””,
“Salary”: “”,
“Coverages”:
[
{
“ProdID”: “”,
“CovTypeName”: “”,
“CovTypeDesc”: “”,
“CovEffDate”: “”,
“CovTermDate”: “”,
“CovVolume”: “”
}
],
“Accumulators”:
[
{
“Accum_Name”: “”,
“Accum_Desc”: “”,
“CoverageType”: “”,
“SpecificType”: “”,
“CurrentAmount”: “”,
“MaximumAmount”: “”
}
]
}
]
}

Sample Response Format


HTTP/1.1 202 Accepted
Operation-Location: [base URL]/operations/[ops ID]
Comments