Versions Compared

Key

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

This section describes the general format of all Quik! SOAP web service requests and responses. For detailed information about each web service method, please read the detailed section for each method.

...

All Quik! web services have been architected built in the same manner, and each call to a web service method will be similar. Requests should be made using 128-bit+ SSL encryption. Each method requires the following request format:

...

Code Block
languagexml
titleXML
<soap12:Header>
 <AuthenticationHeader xmlns="https://websvcs.quikforms.com/QFEM/v5100/">
 <CustomerID>string</CustomerID>
 <UserName>string</UserName>
 <Password>string</Password>
 </AuthenticationHeader>
</soap12:Header>  

SOAP Header Parameters
Note: Only a customer's Master Credentials are to be used when calling Quik! APIs (not end-user credentials)

  • CustomerID – ID assigned in Quik! database for the customer account
  • UserName – Customer's Quik! username
  • Password – Customer's Quik! password

...