Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

This method allows a partner to get a list of their customers and account status.
NOTE: Results do not include the partner's master account, which is considered the parent account.

SOAP Request

Code Block
languagexml
titleXML
<?xml version="1.0" encoding="utf-8"?>

<soap12<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12soap="http://wwwschemas.w3xmlsoap.org/2003soap/05envelope/soap-envelope">
 <soap12 <soap:Header>
    <AuthenticationHeader xmlns="http://websvcs.quikforms.com/Partner">
      <PartnerID>string</PartnerID>
      <UserName>string</UserName>
      <Password>string</Password>
    </AuthenticationHeader>
  </soap12soap:Header>
 <soap12 <soap:Body>
    <GetCustomerList xmlns="http://websvcs.quikforms.com/Partner">
      <CustomerIDs>string</CustomerIDs>
      <CustomerUniqueIDs>string</CustomerUniqueIDs>
      <ProductID>int</ProductID>
      <CustomerProductStatusID>int</CustomerProductStatusID>
      <RenewalDateStart>dateTime</RenewalDateStart>
      <RenewalDateEnd>dateTime</RenewalDateEnd>
    </GetCustomerList>
  </soap12soap:Body>

</soap12soap:Envelope>

SOAP Body Request Parameters

The following parameters can be used with this web service. Required parameters are highlighted in RED. This web service can be used as a dynamic query with search criteria entered into the parameters, or return all records by leaving all the parameters empty.

...

Code Block
languagexml
titleXML
<?xml version="1.0" encoding="utf-8"?>

<soap12<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12soap="http://wwwschemas.w3xmlsoap.org/2003soap/05envelope/soap-envelope">
 <soap12 <soap:Body>
    <GetCustomerListResponse xmlns="http://websvcs.quikforms.com/Partner">
      <GetCustomerListResult>
        <ErrorCode>int</ErrorCode>
        <Message>string</Message>
        <ResultData>
          <xsd:schema>schema</xsd:schema>xml</ResultData>
      </GetCustomerListResult>
    </GetCustomerListResponse>
  </soap12soap:Body>

</soap12soap:Envelope>

Result Fields

The ResultData contains the following fields:

...