CBPNWService


Click here for a complete list of operations.

GetMember

This method is used to get a member's info based on a member userid and password

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/GetMember"

<?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>
    <GetMember xmlns="http://cbpinsure.com/">
      <userid>string</userid>
      <password>string</password>
      <memuserid>string</memuserid>
      <mempassword>string</mempassword>
    </GetMember>
  </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>
    <GetMemberResponse xmlns="http://cbpinsure.com/">
      <GetMemberResult>
        <Member>
          <EntityID>int</EntityID>
          <EntityTypeID>int</EntityTypeID>
          <UserName>string</UserName>
          <Password>string</Password>
          <SecurityQuestionID>int</SecurityQuestionID>
          <SecurityQuestionAnswer>string</SecurityQuestionAnswer>
          <EmailAddress>string</EmailAddress>
          <FirstName>string</FirstName>
          <MiddleName>string</MiddleName>
          <LastName>string</LastName>
          <FullName>string</FullName>
          <Gender>int</Gender>
          <DateOfBirth>string</DateOfBirth>
          <SSN>string</SSN>
          <AddressLine1>string</AddressLine1>
          <AddressLine2>string</AddressLine2>
          <City>string</City>
          <County>string</County>
          <State>int</State>
          <Zip>string</Zip>
          <Country>int</Country>
          <Phone>string</Phone>
          <BillingCCType>int</BillingCCType>
          <BillingCCNumber>string</BillingCCNumber>
          <BillingCCExpiration>string</BillingCCExpiration>
          <BillingCCSecCode>string</BillingCCSecCode>
          <BillingName>string</BillingName>
          <BillingRelatioshipToPolicyHolder>int</BillingRelatioshipToPolicyHolder>
          <BillingBankAccountType>int</BillingBankAccountType>
          <BillingBankName>string</BillingBankName>
          <BillingBankAccountNumber>string</BillingBankAccountNumber>
          <BillingBankRoutingNumber>string</BillingBankRoutingNumber>
          <BillingAddressLn1>string</BillingAddressLn1>
          <BillingAddressLn2>string</BillingAddressLn2>
          <BillingCity>string</BillingCity>
          <BillingCounty>string</BillingCounty>
          <BillingState>int</BillingState>
          <BillingZip>string</BillingZip>
          <BillingCountry>int</BillingCountry>
          <MemberDate>string</MemberDate>
          <IsLocked>string</IsLocked>
          <PasswordAttempts>int</PasswordAttempts>
          <insert_user>string</insert_user>
          <insert_date>string</insert_date>
          <update_user>string</update_user>
          <update_date>string</update_date>
          <CancelDate>string</CancelDate>
          <ApprovedDate>string</ApprovedDate>
          <ApprovedBy>int</ApprovedBy>
          <RelationshipToPolicyHolder>int</RelationshipToPolicyHolder>
          <IsActive>string</IsActive>
          <UserPolicyUpdateRequest>string</UserPolicyUpdateRequest>
          <UserComments>string</UserComments>
          <CreditCardNotification>string</CreditCardNotification>
          <CreditChargeAmountMin>decimal</CreditChargeAmountMin>
          <CreditChargeAmountMax>decimal</CreditChargeAmountMax>
          <NotificationLanguage>int</NotificationLanguage>
          <SMSNotification>string</SMSNotification>
          <SMSPhoneNumber>string</SMSPhoneNumber>
          <CellularCarrier>int</CellularCarrier>
          <CellularCarrierAddress>string</CellularCarrierAddress>
          <SMSPhoneNumber2>string</SMSPhoneNumber2>
          <CellularCarrier2>int</CellularCarrier2>
          <CellularCarrierAddress2>string</CellularCarrierAddress2>
          <EmailNotification>string</EmailNotification>
          <NotificationEmailAddress>string</NotificationEmailAddress>
          <NotificationEmailAddress2>string</NotificationEmailAddress2>
          <PhoneNotification>string</PhoneNotification>
          <NotificationPhoneNumber>string</NotificationPhoneNumber>
          <NotificationPhoneNumber2>string</NotificationPhoneNumber2>
        </Member>
        <Status>string</Status>
        <Message>string</Message>
      </GetMemberResult>
    </GetMemberResponse>
  </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>
    <GetMember xmlns="http://cbpinsure.com/">
      <userid>string</userid>
      <password>string</password>
      <memuserid>string</memuserid>
      <mempassword>string</mempassword>
    </GetMember>
  </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>
    <GetMemberResponse xmlns="http://cbpinsure.com/">
      <GetMemberResult>
        <Member>
          <EntityID>int</EntityID>
          <EntityTypeID>int</EntityTypeID>
          <UserName>string</UserName>
          <Password>string</Password>
          <SecurityQuestionID>int</SecurityQuestionID>
          <SecurityQuestionAnswer>string</SecurityQuestionAnswer>
          <EmailAddress>string</EmailAddress>
          <FirstName>string</FirstName>
          <MiddleName>string</MiddleName>
          <LastName>string</LastName>
          <FullName>string</FullName>
          <Gender>int</Gender>
          <DateOfBirth>string</DateOfBirth>
          <SSN>string</SSN>
          <AddressLine1>string</AddressLine1>
          <AddressLine2>string</AddressLine2>
          <City>string</City>
          <County>string</County>
          <State>int</State>
          <Zip>string</Zip>
          <Country>int</Country>
          <Phone>string</Phone>
          <BillingCCType>int</BillingCCType>
          <BillingCCNumber>string</BillingCCNumber>
          <BillingCCExpiration>string</BillingCCExpiration>
          <BillingCCSecCode>string</BillingCCSecCode>
          <BillingName>string</BillingName>
          <BillingRelatioshipToPolicyHolder>int</BillingRelatioshipToPolicyHolder>
          <BillingBankAccountType>int</BillingBankAccountType>
          <BillingBankName>string</BillingBankName>
          <BillingBankAccountNumber>string</BillingBankAccountNumber>
          <BillingBankRoutingNumber>string</BillingBankRoutingNumber>
          <BillingAddressLn1>string</BillingAddressLn1>
          <BillingAddressLn2>string</BillingAddressLn2>
          <BillingCity>string</BillingCity>
          <BillingCounty>string</BillingCounty>
          <BillingState>int</BillingState>
          <BillingZip>string</BillingZip>
          <BillingCountry>int</BillingCountry>
          <MemberDate>string</MemberDate>
          <IsLocked>string</IsLocked>
          <PasswordAttempts>int</PasswordAttempts>
          <insert_user>string</insert_user>
          <insert_date>string</insert_date>
          <update_user>string</update_user>
          <update_date>string</update_date>
          <CancelDate>string</CancelDate>
          <ApprovedDate>string</ApprovedDate>
          <ApprovedBy>int</ApprovedBy>
          <RelationshipToPolicyHolder>int</RelationshipToPolicyHolder>
          <IsActive>string</IsActive>
          <UserPolicyUpdateRequest>string</UserPolicyUpdateRequest>
          <UserComments>string</UserComments>
          <CreditCardNotification>string</CreditCardNotification>
          <CreditChargeAmountMin>decimal</CreditChargeAmountMin>
          <CreditChargeAmountMax>decimal</CreditChargeAmountMax>
          <NotificationLanguage>int</NotificationLanguage>
          <SMSNotification>string</SMSNotification>
          <SMSPhoneNumber>string</SMSPhoneNumber>
          <CellularCarrier>int</CellularCarrier>
          <CellularCarrierAddress>string</CellularCarrierAddress>
          <SMSPhoneNumber2>string</SMSPhoneNumber2>
          <CellularCarrier2>int</CellularCarrier2>
          <CellularCarrierAddress2>string</CellularCarrierAddress2>
          <EmailNotification>string</EmailNotification>
          <NotificationEmailAddress>string</NotificationEmailAddress>
          <NotificationEmailAddress2>string</NotificationEmailAddress2>
          <PhoneNotification>string</PhoneNotification>
          <NotificationPhoneNumber>string</NotificationPhoneNumber>
          <NotificationPhoneNumber2>string</NotificationPhoneNumber2>
        </Member>
        <Status>string</Status>
        <Message>string</Message>
      </GetMemberResult>
    </GetMemberResponse>
  </soap12:Body>
</soap12:Envelope>