CustomerServer


Click here for a complete list of operations.

CreateCustomer

Test

To test the operation using the HTTP POST protocol, click the 'Invoke' button.
Parameter Value
authorID:
userID:
userPassword:
companyName:
firstName:
lastName:
address1:
address2:
city:
stateProvince:
postalCode:
country:
email:
password:
phone:
fax:
nickname:
offerProduct:
offerPartners:

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 /solo/webservices/customerserver.asmx HTTP/1.1
Host: secure.softwarekey.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://secure.softwarekey.com/solo/webservices/CreateCustomer"

<?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>
    <CreateCustomer xmlns="http://secure.softwarekey.com/solo/webservices/">
      <authorID>int</authorID>
      <userID>string</userID>
      <userPassword>string</userPassword>
      <companyName>string</companyName>
      <firstName>string</firstName>
      <lastName>string</lastName>
      <address1>string</address1>
      <address2>string</address2>
      <city>string</city>
      <stateProvince>string</stateProvince>
      <postalCode>string</postalCode>
      <country>string</country>
      <email>string</email>
      <password>string</password>
      <phone>string</phone>
      <fax>string</fax>
      <nickname>string</nickname>
      <offerProduct>boolean</offerProduct>
      <offerPartners>boolean</offerPartners>
    </CreateCustomer>
  </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>
    <CreateCustomerResponse xmlns="http://secure.softwarekey.com/solo/webservices/">
      <CreateCustomerResult>int</CreateCustomerResult>
    </CreateCustomerResponse>
  </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 /solo/webservices/customerserver.asmx HTTP/1.1
Host: secure.softwarekey.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>
    <CreateCustomer xmlns="http://secure.softwarekey.com/solo/webservices/">
      <authorID>int</authorID>
      <userID>string</userID>
      <userPassword>string</userPassword>
      <companyName>string</companyName>
      <firstName>string</firstName>
      <lastName>string</lastName>
      <address1>string</address1>
      <address2>string</address2>
      <city>string</city>
      <stateProvince>string</stateProvince>
      <postalCode>string</postalCode>
      <country>string</country>
      <email>string</email>
      <password>string</password>
      <phone>string</phone>
      <fax>string</fax>
      <nickname>string</nickname>
      <offerProduct>boolean</offerProduct>
      <offerPartners>boolean</offerPartners>
    </CreateCustomer>
  </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>
    <CreateCustomerResponse xmlns="http://secure.softwarekey.com/solo/webservices/">
      <CreateCustomerResult>int</CreateCustomerResult>
    </CreateCustomerResponse>
  </soap12:Body>
</soap12:Envelope>

HTTP POST

The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.

POST /solo/webservices/customerserver.asmx/CreateCustomer HTTP/1.1
Host: secure.softwarekey.com
Content-Type: application/x-www-form-urlencoded
Content-Length: length

authorID=string&userID=string&userPassword=string&companyName=string&firstName=string&lastName=string&address1=string&address2=string&city=string&stateProvince=string&postalCode=string&country=string&email=string&password=string&phone=string&fax=string&nickname=string&offerProduct=string&offerPartners=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<int xmlns="http://secure.softwarekey.com/solo/webservices/">int</int>