ResendPaymentFormEmail

Description

This method is used to resend the payment form email.

Syntax

string ResendPaymentFormEmail(SecurityToken securityToken, string paymentInternalId);

Arguments

TypeNameDescription
SecurityToken securityTokenMerchant security token: used to identify merchant and validate transaction. (required)
stringpaymentInternalIdPayment internal Id. (required)

Return Value

TypeDescription
stringReturns the Payment Form email
Request:

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ebiz="http://eBizCharge.ServiceModel.SOAP" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
   <soapenv:Header />
   <soapenv:Body>
      <ebiz:ResendEbizWebFormEmail xmlns="http://eBizCharge.ServiceModel.SOAP">
         <!--Optional:-->
         <ebiz:securityToken>
            <!--Optional:-->
            <ebiz:SecurityId>*******-c870-41b8-aa5c-205e55b7a049</ebiz:SecurityId>
            <!--Optional:-->
            <ebiz:UserId>Maverick1</ebiz:UserId>
            <!--Optional:-->
            <ebiz:Password>Superman1</ebiz:Password>
         </ebiz:securityToken>
         <!--Optional:-->
         <ebiz:paymentInternalId>*******-5c4d-407a-9d88-55d580d5a775</ebiz:paymentInternalId>
      </ebiz:ResendEbizWebFormEmail>
   </soapenv:Body>
</soapenv:Envelope>

Response: 

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
   <s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
      <ResendEbizWebFormEmailResponse xmlns="http://eBizCharge.ServiceModel.SOAP">
         <ResendEbizWebFormEmailResult>1</ResendEbizWebFormEmailResult>
      </ResendEbizWebFormEmailResponse>
   </s:Body>
</s:Envelope>