WS_Contract


Click here for a complete list of operations.

CreateProspectSiteWithoutParsedAddress

Create Prospect Site Without Parsed Address, using Authentication Key; Login Company Code[2 characters]; Prospect ID[if the site belong to a customer, then 0]; Customer ID[if the site belong to a prospect, then 0]; Prospect Name; Address; City; State/Province[2 characters short code for state/province]; Postal Code or Zip Code[eg: Canada N1N1N1, USA 12345-1234]; Phone[eg: 1234567890]; Fax[eg: 1234567890]; Contact; Contact Email; Return: Propsect Site ID [int]

Test

To test the operation using the HTTP POST protocol, click the 'Invoke' button.
Parameter Value
sLoginComp:
prospectId:
customerId:
name:
add1:
city:
state:
pzip:
phone:
fax:
contact:
email:

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 /TruxWeb/WSCust_Contract/WS_Contract.asmx HTTP/1.1
Host: payments.robinsonwasteservices.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.trux.com/CreateProspectSiteWithoutParsedAddress"

<?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>
    <Credentials xmlns="http://www.trux.com">
      <sAccountID>string</sAccountID>
      <sAuthCode>string</sAuthCode>
      <isAuthCodeEncrypted>boolean</isAuthCodeEncrypted>
      <areParametersEncrypted>boolean</areParametersEncrypted>
      <encryptedParameterNames>
        <string>string</string>
        <string>string</string>
      </encryptedParameterNames>
      <requireEncryptedResponse>boolean</requireEncryptedResponse>
      <encryptionMethod>string</encryptionMethod>
      <keyInfo>
        <encryptedKey>string</encryptedKey>
        <encryptionPublicKey>string</encryptionPublicKey>
      </keyInfo>
      <publicAuthKey>string</publicAuthKey>
    </Credentials>
  </soap:Header>
  <soap:Body>
    <CreateProspectSiteWithoutParsedAddress xmlns="http://www.trux.com">
      <sLoginComp>string</sLoginComp>
      <prospectId>int</prospectId>
      <customerId>int</customerId>
      <name>string</name>
      <add1>string</add1>
      <city>string</city>
      <state>string</state>
      <pzip>string</pzip>
      <phone>string</phone>
      <fax>string</fax>
      <contact>string</contact>
      <email>string</email>
    </CreateProspectSiteWithoutParsedAddress>
  </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>
    <CreateProspectSiteWithoutParsedAddressResponse xmlns="http://www.trux.com">
      <CreateProspectSiteWithoutParsedAddressResult>int</CreateProspectSiteWithoutParsedAddressResult>
    </CreateProspectSiteWithoutParsedAddressResponse>
  </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 /TruxWeb/WSCust_Contract/WS_Contract.asmx HTTP/1.1
Host: payments.robinsonwasteservices.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:Header>
    <Credentials xmlns="http://www.trux.com">
      <sAccountID>string</sAccountID>
      <sAuthCode>string</sAuthCode>
      <isAuthCodeEncrypted>boolean</isAuthCodeEncrypted>
      <areParametersEncrypted>boolean</areParametersEncrypted>
      <encryptedParameterNames>
        <string>string</string>
        <string>string</string>
      </encryptedParameterNames>
      <requireEncryptedResponse>boolean</requireEncryptedResponse>
      <encryptionMethod>string</encryptionMethod>
      <keyInfo>
        <encryptedKey>string</encryptedKey>
        <encryptionPublicKey>string</encryptionPublicKey>
      </keyInfo>
      <publicAuthKey>string</publicAuthKey>
    </Credentials>
  </soap12:Header>
  <soap12:Body>
    <CreateProspectSiteWithoutParsedAddress xmlns="http://www.trux.com">
      <sLoginComp>string</sLoginComp>
      <prospectId>int</prospectId>
      <customerId>int</customerId>
      <name>string</name>
      <add1>string</add1>
      <city>string</city>
      <state>string</state>
      <pzip>string</pzip>
      <phone>string</phone>
      <fax>string</fax>
      <contact>string</contact>
      <email>string</email>
    </CreateProspectSiteWithoutParsedAddress>
  </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>
    <CreateProspectSiteWithoutParsedAddressResponse xmlns="http://www.trux.com">
      <CreateProspectSiteWithoutParsedAddressResult>int</CreateProspectSiteWithoutParsedAddressResult>
    </CreateProspectSiteWithoutParsedAddressResponse>
  </soap12:Body>
</soap12:Envelope>

HTTP GET

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

GET /TruxWeb/WSCust_Contract/WS_Contract.asmx/CreateProspectSiteWithoutParsedAddress?sLoginComp=string&prospectId=string&customerId=string&name=string&add1=string&city=string&state=string&pzip=string&phone=string&fax=string&contact=string&email=string HTTP/1.1
Host: payments.robinsonwasteservices.com
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://www.trux.com">int</int>

HTTP POST

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

POST /TruxWeb/WSCust_Contract/WS_Contract.asmx/CreateProspectSiteWithoutParsedAddress HTTP/1.1
Host: payments.robinsonwasteservices.com
Content-Type: application/x-www-form-urlencoded
Content-Length: length

sLoginComp=string&prospectId=string&customerId=string&name=string&add1=string&city=string&state=string&pzip=string&phone=string&fax=string&contact=string&email=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://www.trux.com">int</int>