ResendEbizWebFormEmail

Description

This method is used to resend the EBizCharge web form email.

Syntax

string ResendEbizWebFormEmail(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 EBizCharge Web Form email

Example

Request:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ebiz="http://eBizCharge.ServiceModel.SOAP">
   <soapenv:Header />
   <soapenv:Body>
      <ebiz:ResendEbizWebFormEmail>
         <ebiz:securityToken>
            <ebiz:SecurityId>********-55ee-434c-b126-f630f2486a2d</ebiz:SecurityId>
            <ebiz:UserId>?</ebiz:UserId>
            <ebiz:Password>?</ebiz:Password>
         </ebiz:securityToken>
         <ebiz:paymentInternalId>********-fe2f-4873-94dc-efa52c38eaa5</ebiz:paymentInternalId>
      </ebiz:ResendEbizWebFormEmail>
   </soapenv:Body>
</soapenv:Envelope>

Response:

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