DeleteEbizWebFormPayment
Description
This method is used to delete the EBizCharge webform email.
Syntax
PaymentResponse DeleteEbizWebFormPayment(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 |
---|---|
PaymentResponse | Returns the payment response |
Example
Request:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ebiz="http://eBizCharge.ServiceModel.SOAP">
<soapenv:Header />
<soapenv:Body>
<ebiz:DeleteEbizWebFormPayment>
<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:DeleteEbizWebFormPayment>
</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">
<DeleteEbizWebFormPaymentResponse xmlns="http://eBizCharge.ServiceModel.SOAP">
<DeleteEbizWebFormPaymentResult>
<PaymentInternalId>********-fe2f-4873-94dc-efa52c38eaa5</PaymentInternalId>
<Status>Success</Status>
<StatusCode>1</StatusCode>
<Error />
<ErrorCode>0</ErrorCode>
</DeleteEbizWebFormPaymentResult>
</DeleteEbizWebFormPaymentResponse>
</s:Body>
</s:Envelope>
Updated over 2 years ago