GetScheduledDates
Description
This method is used to get Scheduled dates
Syntax
ZipCodeData GetZipCodeInfo(SecurityToken securityToken, string zipCode)
Arguments
Type | Name | Description |
---|---|---|
SecurityToken | securityToken | Merchant security token: used to identify merchant and validate transaction. (required) |
string | zipCode | ZIP Code. |
Return Values
Type | Description |
---|---|
ZipCodeData | Contains details for user data. |
Examples
Request:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ebiz="http://eBizCharge.ServiceModel.SOAP">
<soapenv:Header />
<soapenv:Body>
<ebiz:GetScheduledDates>
<ebiz:securityToken>
<ebiz:SecurityId>********-794B-4CEE-B4DF-6318A4007523</ebiz:SecurityId>
<ebiz:UserId />
<ebiz:Password />
</ebiz:securityToken>
<ebiz:scheduledPaymentInternalId>********-f036-4029-aac0-1ffd071b58e5</ebiz:scheduledPaymentInternalId>
</ebiz:GetScheduledDates>
</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">
<GetScheduledDatesResponse xmlns="http://eBizCharge.ServiceModel.SOAP">
<GetScheduledDatesResult>
<ScheduledDates>["2017-02-13","2017-03-13","2017-04-13","2017-05-13","2017-06-13","2017-07-13","2017-08-13","2017-09-13","2017-10-13","2017-11-13","2017-12-13","2018-01-13","2018-02-13","2018-03-13","2018-04-13","2018-05-13","2018-06-13","2018-07-13","2018-08-13","2018-09-13","2018-10-13","2018-11-13","2018-12-13"]</ScheduledDates>
<Status>Success</Status>
<StatusCode>1</StatusCode>
<Error />
<ErrorCode>0</ErrorCode>
</GetScheduledDatesResult>
</GetScheduledDatesResponse>
</s:Body>
</s:Envelope>
Updated over 2 years ago