CBPNWService
Click here for a complete list of operations.
GetClaimInformationByDate
This method is used to retrieve claim information based on the claim dates on record.
Test
The test form is only available for requests from the local machine.SOAP 1.1
The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.
POST /CBPNWService.asmx HTTP/1.1
Host: ws.cbpinsure.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://cbpinsure.com/GetClaimInformationByDate"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetClaimInformationByDate xmlns="http://cbpinsure.com/">
<userid>string</userid>
<password>string</password>
<prodNo>int</prodNo>
<groupNo>string</groupNo>
<firstName>string</firstName>
<lastName>string</lastName>
<receivedDateStart>string</receivedDateStart>
<receivedDateEnd>string</receivedDateEnd>
<processedDateStart>string</processedDateStart>
<processedDateEnd>string</processedDateEnd>
<paidDateStart>string</paidDateStart>
<paidDateEnd>string</paidDateEnd>
</GetClaimInformationByDate>
</soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetClaimInformationByDateResponse xmlns="http://cbpinsure.com/">
<GetClaimInformationByDateResult>
<Claims>
<CBPWSClaim>
<AccountID>int</AccountID>
<ProductID>int</ProductID>
<GroupPlanNo>int</GroupPlanNo>
<ClaimNumber>string</ClaimNumber>
<ClaimPrefix>string</ClaimPrefix>
<ClaimSuffix>string</ClaimSuffix>
<PolicyID>int</PolicyID>
<CertificateNo>string</CertificateNo>
<MemberNo>string</MemberNo>
<FirstName>string</FirstName>
<LastName>string</LastName>
<MiddleName>string</MiddleName>
<AddressLn1>string</AddressLn1>
<AddressLn2>string</AddressLn2>
<City>string</City>
<State>string</State>
<Zip>string</Zip>
<Country>string</Country>
<DOB>dateTime</DOB>
<Phone>string</Phone>
<Cell>string</Cell>
<Email>string</Email>
<RelToInsured>string</RelToInsured>
<PaidThruDate>dateTime</PaidThruDate>
<EffectiveDate>dateTime</EffectiveDate>
<TerminationDate>dateTime</TerminationDate>
<CloseDate>dateTime</CloseDate>
<ContactDate>dateTime</ContactDate>
<DateofService>dateTime</DateofService>
<ClaimStatus>string</ClaimStatus>
<ClaimSystemStatus>string</ClaimSystemStatus>
<PrimaryInsured>string</PrimaryInsured>
<PrimaryInsuredAddress>string</PrimaryInsuredAddress>
<PrimaryInsuredMemberNo>string</PrimaryInsuredMemberNo>
<EINTaxID>string</EINTaxID>
<ReceivedDate>dateTime</ReceivedDate>
<CleanClaimDate>dateTime</CleanClaimDate>
<ClaimDetails xsi:nil="true" />
</CBPWSClaim>
<CBPWSClaim>
<AccountID>int</AccountID>
<ProductID>int</ProductID>
<GroupPlanNo>int</GroupPlanNo>
<ClaimNumber>string</ClaimNumber>
<ClaimPrefix>string</ClaimPrefix>
<ClaimSuffix>string</ClaimSuffix>
<PolicyID>int</PolicyID>
<CertificateNo>string</CertificateNo>
<MemberNo>string</MemberNo>
<FirstName>string</FirstName>
<LastName>string</LastName>
<MiddleName>string</MiddleName>
<AddressLn1>string</AddressLn1>
<AddressLn2>string</AddressLn2>
<City>string</City>
<State>string</State>
<Zip>string</Zip>
<Country>string</Country>
<DOB>dateTime</DOB>
<Phone>string</Phone>
<Cell>string</Cell>
<Email>string</Email>
<RelToInsured>string</RelToInsured>
<PaidThruDate>dateTime</PaidThruDate>
<EffectiveDate>dateTime</EffectiveDate>
<TerminationDate>dateTime</TerminationDate>
<CloseDate>dateTime</CloseDate>
<ContactDate>dateTime</ContactDate>
<DateofService>dateTime</DateofService>
<ClaimStatus>string</ClaimStatus>
<ClaimSystemStatus>string</ClaimSystemStatus>
<PrimaryInsured>string</PrimaryInsured>
<PrimaryInsuredAddress>string</PrimaryInsuredAddress>
<PrimaryInsuredMemberNo>string</PrimaryInsuredMemberNo>
<EINTaxID>string</EINTaxID>
<ReceivedDate>dateTime</ReceivedDate>
<CleanClaimDate>dateTime</CleanClaimDate>
<ClaimDetails xsi:nil="true" />
</CBPWSClaim>
</Claims>
<Status>string</Status>
<Message>string</Message>
</GetClaimInformationByDateResult>
</GetClaimInformationByDateResponse>
</soap:Body>
</soap:Envelope>
SOAP 1.2
The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.
POST /CBPNWService.asmx HTTP/1.1
Host: ws.cbpinsure.com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<GetClaimInformationByDate xmlns="http://cbpinsure.com/">
<userid>string</userid>
<password>string</password>
<prodNo>int</prodNo>
<groupNo>string</groupNo>
<firstName>string</firstName>
<lastName>string</lastName>
<receivedDateStart>string</receivedDateStart>
<receivedDateEnd>string</receivedDateEnd>
<processedDateStart>string</processedDateStart>
<processedDateEnd>string</processedDateEnd>
<paidDateStart>string</paidDateStart>
<paidDateEnd>string</paidDateEnd>
</GetClaimInformationByDate>
</soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<GetClaimInformationByDateResponse xmlns="http://cbpinsure.com/">
<GetClaimInformationByDateResult>
<Claims>
<CBPWSClaim>
<AccountID>int</AccountID>
<ProductID>int</ProductID>
<GroupPlanNo>int</GroupPlanNo>
<ClaimNumber>string</ClaimNumber>
<ClaimPrefix>string</ClaimPrefix>
<ClaimSuffix>string</ClaimSuffix>
<PolicyID>int</PolicyID>
<CertificateNo>string</CertificateNo>
<MemberNo>string</MemberNo>
<FirstName>string</FirstName>
<LastName>string</LastName>
<MiddleName>string</MiddleName>
<AddressLn1>string</AddressLn1>
<AddressLn2>string</AddressLn2>
<City>string</City>
<State>string</State>
<Zip>string</Zip>
<Country>string</Country>
<DOB>dateTime</DOB>
<Phone>string</Phone>
<Cell>string</Cell>
<Email>string</Email>
<RelToInsured>string</RelToInsured>
<PaidThruDate>dateTime</PaidThruDate>
<EffectiveDate>dateTime</EffectiveDate>
<TerminationDate>dateTime</TerminationDate>
<CloseDate>dateTime</CloseDate>
<ContactDate>dateTime</ContactDate>
<DateofService>dateTime</DateofService>
<ClaimStatus>string</ClaimStatus>
<ClaimSystemStatus>string</ClaimSystemStatus>
<PrimaryInsured>string</PrimaryInsured>
<PrimaryInsuredAddress>string</PrimaryInsuredAddress>
<PrimaryInsuredMemberNo>string</PrimaryInsuredMemberNo>
<EINTaxID>string</EINTaxID>
<ReceivedDate>dateTime</ReceivedDate>
<CleanClaimDate>dateTime</CleanClaimDate>
<ClaimDetails xsi:nil="true" />
</CBPWSClaim>
<CBPWSClaim>
<AccountID>int</AccountID>
<ProductID>int</ProductID>
<GroupPlanNo>int</GroupPlanNo>
<ClaimNumber>string</ClaimNumber>
<ClaimPrefix>string</ClaimPrefix>
<ClaimSuffix>string</ClaimSuffix>
<PolicyID>int</PolicyID>
<CertificateNo>string</CertificateNo>
<MemberNo>string</MemberNo>
<FirstName>string</FirstName>
<LastName>string</LastName>
<MiddleName>string</MiddleName>
<AddressLn1>string</AddressLn1>
<AddressLn2>string</AddressLn2>
<City>string</City>
<State>string</State>
<Zip>string</Zip>
<Country>string</Country>
<DOB>dateTime</DOB>
<Phone>string</Phone>
<Cell>string</Cell>
<Email>string</Email>
<RelToInsured>string</RelToInsured>
<PaidThruDate>dateTime</PaidThruDate>
<EffectiveDate>dateTime</EffectiveDate>
<TerminationDate>dateTime</TerminationDate>
<CloseDate>dateTime</CloseDate>
<ContactDate>dateTime</ContactDate>
<DateofService>dateTime</DateofService>
<ClaimStatus>string</ClaimStatus>
<ClaimSystemStatus>string</ClaimSystemStatus>
<PrimaryInsured>string</PrimaryInsured>
<PrimaryInsuredAddress>string</PrimaryInsuredAddress>
<PrimaryInsuredMemberNo>string</PrimaryInsuredMemberNo>
<EINTaxID>string</EINTaxID>
<ReceivedDate>dateTime</ReceivedDate>
<CleanClaimDate>dateTime</CleanClaimDate>
<ClaimDetails xsi:nil="true" />
</CBPWSClaim>
</Claims>
<Status>string</Status>
<Message>string</Message>
</GetClaimInformationByDateResult>
</GetClaimInformationByDateResponse>
</soap12:Body>
</soap12:Envelope>