listRefundFiles
HTTP method: GET
https://testgateway.altapaysecure.com/merchant/API/listRefundFiles
This method is used to list of refund files available for specific bank
Request parameters
Parameter | Description | Type |
---|---|---|
bank_name | Required Name of the bank ('sofort' or 'ideal' currently). | string |
filter_from_date | Add a later than created from filter | string (yyyy-mm-dd) |
filter_to_date | Add an earlier than created date filter | string (yyyy-mm-dd) |
Response parameters
The table shows the most pertinent response values for the method. For a complete list of API response parameters, see API Response structure (XML).
Parameter | Description | Type |
---|---|---|
id | Unique ID of the file | string |
Name | Refund file name | string |
DownloadLink | Link to API call for refund file content download | string |
Examples
GET call
https://<YourShopName>.altapaysecure.com/merchant/API/listRefundFiles?bank_name=sofort
XML response
<?xml version="1.0" encoding="utf-8" ?> <APIResponse version="20170228"> <Header> <Date>2022-03-27T14:46:06+00:00</Date> <Path>API/listRefundFiles</Path> <ErrorCode>0</ErrorCode> <ErrorMessage/> </Header> <Body> <RefundFiles> <File> <id>refundFileId</id> <name>filename</name> <DownloadLink>https://<YourShopName>.altapaysecure.com/merchant/API/refunds/sofort/1</DownloadLink> </File> </RefundFiles> </Body> </APIResponse>