Tenant Server V1

<back to all web services

post_ACHpayment

post_ACHpayment Parameters:
NameParameterData TypeRequiredDescription
tokenquerystringNo
tokensecretquerystringNo
emailquerystringNo
idciaquerystringNo
idtenant1querystringNo
post_ACHpaymentResponse Parameters:
NameParameterData TypeRequiredDescription
listformList<post_ACHpaymentInfo>No
baseResponse Parameters:
NameParameterData TypeRequiredDescription
resultformintNo
messageformstringNo
post_ACHpaymentInfo Parameters:
NameParameterData TypeRequiredDescription
dateformDateTime?No
docformstringNo
numberformstringNo
paytoformstringNo
checkamountformstringNo
clearDateformDateTime?No

To override the Content-type in your clients, use the HTTP Accept Header, append the .soap11 suffix or ?format=soap11

HTTP + SOAP11

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /soap11 HTTP/1.1 
Host: sdk.lovettcommercial.com 
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: post_ACHpayment

<?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>

<post_ACHpayment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TenantSDK.post.ACH">
  <email>String</email>
  <idcia>String</idcia>
  <idtenant1>String</idtenant1>
  <token>String</token>
  <tokensecret>String</tokensecret>
</post_ACHpayment>

    </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: application/xml
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>

<post_ACHpaymentResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TenantSDK.post.ACH">
  <message xmlns="http://schemas.datacontract.org/2004/07/TenantSDK.post">String</message>
  <result xmlns="http://schemas.datacontract.org/2004/07/TenantSDK.post">0</result>
  <list>
    <post_ACHpaymentInfo>
      <checkamount>String</checkamount>
      <clearDate>0001-01-01T00:00:00</clearDate>
      <date>0001-01-01T00:00:00</date>
      <doc>String</doc>
      <number>String</number>
      <payto>String</payto>
    </post_ACHpaymentInfo>
  </list>
</post_ACHpaymentResponse>

    </soap:Body>
</soap:Envelope>