MarkEbizWebFormPaymentAsApplied

Description

This method is used to mark the EBizCharge webform email as applied.

Syntax

PaymentResponse MarkEbizWebFormPaymentAsApplied(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
PaymentResponseReturns 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:MarkEbizWebFormPaymentAsApplied>
         <ebiz:securityToken>
            <ebiz:SecurityId>********-55ee-434c-b126-f630f2486a2d</ebiz:SecurityId>
            <ebiz:UserId>?</ebiz:UserId>
            <ebiz:Password>?</ebiz:Password>
         </ebiz:securityToken>
         <ebiz:paymentInternalId>********-9c70-4446-8e02-aebbb6ce0146</ebiz:paymentInternalId>
      </ebiz:MarkEbizWebFormPaymentAsApplied>
   </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">
      <MarkEbizWebFormPaymentAsAppliedResponse xmlns="http://eBizCharge.ServiceModel.SOAP">
         <MarkEbizWebFormPaymentAsAppliedResult>
            <PaymentInternalId>********-9c70-4446-8e02-aebbb6ce0146</PaymentInternalId>
            <Status>Success</Status>
            <StatusCode>1</StatusCode>
            <Error />
            <ErrorCode>0</ErrorCode>
         </MarkEbizWebFormPaymentAsAppliedResult>
      </MarkEbizWebFormPaymentAsAppliedResponse>
   </s:Body>
</s:Envelope>