ResendEbizWebFormEmail
Description
This method is used to resend the EBizCharge web form email.
Syntax
string ResendEbizWebFormEmail(SecurityToken securityToken, string paymentInternalId);
Arguments
Type | Name | Description |
---|---|---|
SecurityToken | securityToken | Merchant security token: used to identify merchant and validate transaction. (required) |
string | paymentInternalId | Payment internal Id. (required) |
Return Value
Type | Description |
---|---|
string | Returns 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>
Updated over 2 years ago