Versions Compared

Key

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

The following SOAP Request includes the minimum required data to generate an HTML form using Quik! SOAP web services. This sample request will generate Quik! Form ID 12 (American Funds Application for Individual or Joint Accounts).

Code Block
languagexml
titleSOAP Request
<?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:Header>
    <AuthenticationHeader xmlns="https://websvcs.quikforms.com/quikformsenginews/">
      <CustomerID>*********</CustomerID>
      <UserName>*********</UserName>
      <Password>*********</Password>
    </AuthenticationHeader>
  </soap:Header>
    <soap:Body>
        <Execute
            xmlns="https://websvcs.quikforms.com/quikformsenginews/">
            <QFESettings>
                <QuikFormID>12</QuikFormID>
			</QFESettings>
    	</Execute>
	</soap:Body>
</soap:Envelope>

...