ModifyScheduledRecurringPayment_PaymentMethodProfile
Description
This method is used to modify the scheduled recurring payment.
Syntax
ModifyScheduledRecurringPayment_PaymentMethodProfileResponse ModifyScheduledRecurringPayment_PaymentMethodProfile(SecurityToken securityToken, string scheduledPaymentInternalId, string paymentMethodProfileId);
Arguments
Type | Name | Description |
---|---|---|
SecurityToken | securityToken | Merchant security token: used to identify merchant and validate transaction. (required) |
string | scheduledPaymentInternalId | Scheduled payment internal ID. (required) |
string | paymentMethodProfileId | Payment method profile ID. (required) |
Return Value
Type | Description |
---|---|
ModifyScheduledRecurringPayment_PaymentMethodProfileResponse | Returns the response to the modify schedule recurring payment |
Example
Request:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ebiz="http://eBizCharge.ServiceModel.SOAP">
<soapenv:Header />
<soapenv:Body>
<ebiz:ModifyScheduledRecurringPayment_PaymentMethodProfile>
<ebiz:securityToken>
<ebiz:SecurityId>********-7ec3-4951-b1de-8ef47d896241</ebiz:SecurityId>
<ebiz:UserId />
<ebiz:Password />
</ebiz:securityToken>
<ebiz:scheduledPaymentInternalId>********-3b12-49f0-93e2-4e9eac3bae62</ebiz:scheduledPaymentInternalId>
<ebiz:paymentMethodProfileId>15</ebiz:paymentMethodProfileId>
</ebiz:ModifyScheduledRecurringPayment_PaymentMethodProfile>
</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">
<ModifyScheduledRecurringPayment_PaymentMethodProfileResponse xmlns="http://eBizCharge.ServiceModel.SOAP">
<ModifyScheduledRecurringPayment_PaymentMethodProfileResult>
<Status>Success</Status>
<StatusCode>1</StatusCode>
<Error />
<ErrorCode>0</ErrorCode>
</ModifyScheduledRecurringPayment_PaymentMethodProfileResult>
</ModifyScheduledRecurringPayment_PaymentMethodProfileResponse>
</s:Body>
</s:Envelope>
Updated over 2 years ago