SWS ExportRefunds Method
Exports a list of refunds and resets the refund status for specified site(s) for a given time-frame.
Parameters
Name | DataType | Is Required |
---|---|---|
EndDate | DateTime | Optional |
Description | The date to end a process. If start date is provided, then it is the end date of a range of dates. Technically, it’s one day beyond the end date. This will default to today’s date if left undefined. | |
OrgID | Long | Required |
Description | The organization’s ID number. | |
SiteList | Long | Required |
Description | A collection of site IDs. This will return all sites within the organization if left undefined. | |
StartDate | DateTime | Required |
Description | The date to start a process. If end date is provided, then it is the start date of a range of dates. | |
RefundStatusFilter | Integer | Optional |
Description | Selects refunds of given status. Defaults to 2 and 5 if left blank. Available values:
|
Returned Parameters
Name | DataType |
---|---|
RefundDetail | RefundDetail |
Description | Returns the object containing all the values of the refund detail. |
Example
As with every method we need to pass in credentials. We do this with the LookupUser request object.
We will assume you have a web reference, let us name it SWS, in your Visual Studio project. At this point we need to classify our objects. We will need the standard service object, an ExportRefunds request object, and an ExportRefunds response object. We can define and create those like this:
// Create a request and response objects
SWS.WSSoapClient service = new SWS.WSSoapClient();
SWS.Refund_Request request = new SWS.Refund_Request();
SWS.Refund_Response response;
Here’s a sample code of the Request object (including optional parameters):
// ExportRefunds Request
request.OrgID = 5005;
request.SiteList = new long[] { 123456, 456789 };
request.StartDate = DateTime.Today.AddDays(1);
request.EndDate = DateTime.Today;
request.RefundStatusFilter = new int[] { 1 };
Finally we can call the method and pass across the login object and the request object to export the specified refunds. It’s a good idea to do this in a Try Catch block.
// Call the method that will load the response object
try
{
response = service.ExportRefunds(user_request, request);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
Note that if something goes wrong the service will respond with an exception. You will want to capture the message returned in that exception so it can be debugged.
For a full list of methods see SWS Methods.