WS_PayByCC


Click here for a complete list of operations.

PayByNewAch

Pay selected Invoices using the provided ACH information. Company Code [2 characters] User ID [10 characters unpadded] Customer Number [10 digits, unpadded] Site Number [4 digits, unpadded, Use '0' if Customer is Consolidated] Charge Type ['V' = Variable Recurring, 'F' = Fixed Recurring, 'S' = Single Charge] First Name of Card Holder Last Name of Card Holder Address of Card Holder City of Card Holder State or Province of Card Holder Country of Card Holder Postal or Zip Code of Card Holder Phone Number of Card Holder Email of Card Holder Active flag ['True'= Overwrite Existing Card (or Save As New Card if none), 'False'= Save As Historic Card] Invoice Numbers to be paid [In an ArrayList] Card Number Bank Name Bank Account Type [0 = Checking, 1 = Saving] Banking Route Number Date of Birth License Number License State Return Message ['TRUE - xxx' means the successful transaction , 'FALSE - xxx' means the failed transaction followed by reason/gateway resonse]

Test

The test form is only available for requests from the local machine.

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/WSAcct_PayByCreditCard/WS_PayByCreditCard.asmx HTTP/1.1
Host: trux.organicdiversion.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.trux.com/PayByNewAch"

<?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>
    <PayByNewAch xmlns="http://www.trux.com">
      <sLoginComp>string</sLoginComp>
      <sLoginUser>string</sLoginUser>
      <cust>string</cust>
      <site>string</site>
      <chargeType>string</chargeType>
      <firstName>string</firstName>
      <lastName>string</lastName>
      <address>string</address>
      <city>string</city>
      <stateProv>string</stateProv>
      <country>string</country>
      <postalCode>string</postalCode>
      <phoneNumber>string</phoneNumber>
      <email>string</email>
      <bActive>boolean</bActive>
      <alSelectedInvc>
        <anyType />
        <anyType />
      </alSelectedInvc>
      <accountNumber>string</accountNumber>
      <bankName>string</bankName>
      <accountType>string</accountType>
      <routingNumber>string</routingNumber>
      <birthDate>string</birthDate>
      <driversLicense>string</driversLicense>
      <driverStateProv>string</driverStateProv>
    </PayByNewAch>
  </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>
    <PayByNewAchResponse xmlns="http://www.trux.com">
      <PayByNewAchResult>string</PayByNewAchResult>
    </PayByNewAchResponse>
  </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/WSAcct_PayByCreditCard/WS_PayByCreditCard.asmx HTTP/1.1
Host: trux.organicdiversion.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>
    <PayByNewAch xmlns="http://www.trux.com">
      <sLoginComp>string</sLoginComp>
      <sLoginUser>string</sLoginUser>
      <cust>string</cust>
      <site>string</site>
      <chargeType>string</chargeType>
      <firstName>string</firstName>
      <lastName>string</lastName>
      <address>string</address>
      <city>string</city>
      <stateProv>string</stateProv>
      <country>string</country>
      <postalCode>string</postalCode>
      <phoneNumber>string</phoneNumber>
      <email>string</email>
      <bActive>boolean</bActive>
      <alSelectedInvc>
        <anyType />
        <anyType />
      </alSelectedInvc>
      <accountNumber>string</accountNumber>
      <bankName>string</bankName>
      <accountType>string</accountType>
      <routingNumber>string</routingNumber>
      <birthDate>string</birthDate>
      <driversLicense>string</driversLicense>
      <driverStateProv>string</driverStateProv>
    </PayByNewAch>
  </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>
    <PayByNewAchResponse xmlns="http://www.trux.com">
      <PayByNewAchResult>string</PayByNewAchResult>
    </PayByNewAchResponse>
  </soap12:Body>
</soap12:Envelope>