MerchantService


Click here for a complete list of operations.

ReverseACHTransaction

Reverse ACH Transaction

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 /webservicev2/wscheckoutpayment.asmx HTTP/1.1
Host: mmpay.evertecinc.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/WebMerchant/MerchantService/ReverseACHTransaction"

<?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>
    <ReverseACHTransaction xmlns="http://tempuri.org/WebMerchant/MerchantService">
      <ReverseTransactionRequest xmlns="Evertec.MMPay.ReverseTransaction">
        <Username>string</Username>
        <Password>string</Password>
        <RequestID>string</RequestID>
      </ReverseTransactionRequest>
    </ReverseACHTransaction>
  </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>
    <ReverseACHTransactionResponse xmlns="http://tempuri.org/WebMerchant/MerchantService">
      <ReverseTransactionResponse xmlns="Evertec.MMPay.ReverseTransaction">
        <getError>string</getError>
        <getMessage>string</getMessage>
        <StatusCode>string</StatusCode>
        <FieldError>boolean</FieldError>
        <FieldErrorList>
          <anyType />
          <anyType />
        </FieldErrorList>
        <ResponseStatus>_Approved or _AuthenticationError or _Completed or _Declined or _Error or _Exception or _Failed or _Pending or _Processing or _Rejected or _Reversed or _Successfull or _Unassigned or _Unknown</ResponseStatus>
        <RequestID>string</RequestID>
        <Amount>decimal</Amount>
        <FullName>string</FullName>
      </ReverseTransactionResponse>
    </ReverseACHTransactionResponse>
  </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 /webservicev2/wscheckoutpayment.asmx HTTP/1.1
Host: mmpay.evertecinc.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>
    <ReverseACHTransaction xmlns="http://tempuri.org/WebMerchant/MerchantService">
      <ReverseTransactionRequest xmlns="Evertec.MMPay.ReverseTransaction">
        <Username>string</Username>
        <Password>string</Password>
        <RequestID>string</RequestID>
      </ReverseTransactionRequest>
    </ReverseACHTransaction>
  </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>
    <ReverseACHTransactionResponse xmlns="http://tempuri.org/WebMerchant/MerchantService">
      <ReverseTransactionResponse xmlns="Evertec.MMPay.ReverseTransaction">
        <getError>string</getError>
        <getMessage>string</getMessage>
        <StatusCode>string</StatusCode>
        <FieldError>boolean</FieldError>
        <FieldErrorList>
          <anyType />
          <anyType />
        </FieldErrorList>
        <ResponseStatus>_Approved or _AuthenticationError or _Completed or _Declined or _Error or _Exception or _Failed or _Pending or _Processing or _Rejected or _Reversed or _Successfull or _Unassigned or _Unknown</ResponseStatus>
        <RequestID>string</RequestID>
        <Amount>decimal</Amount>
        <FullName>string</FullName>
      </ReverseTransactionResponse>
    </ReverseACHTransactionResponse>
  </soap12:Body>
</soap12:Envelope>