SWS GetDelinqSchedule Method
Retrieves a list of the organization’s delinquency schedules and their IDs.
Parameters
Name | DataType | Is Required |
---|---|---|
OrgID | Long | Required |
Description | The organization’s ID number. |
Returned Parameters
Name | DataType |
---|---|
Del_Schedule_Desc | String |
Description | The description of the delinquency schedule. |
Del_Schedule_ID | Long |
Description | The delinquency schedule’s ID number. |
Del_Schedule_Name | String |
Description | The name of the delinquency schedule. |
Example
As with every method we need to pass in credentials. We do this with the LookupUser request object.
We’ll assume you’ve got a web reference, let’s name it SWS, in your Visual Studio project. At this point we need to our objects. We’ll need the standard service object, a GetDelinqSchedule request object and a GetDelinqSchedule response object. We can define and create those like this:
// Create a request and response objects
SWS.WSSoapClient service = new SWS.WSSoapClient();
SWS.GetDelinqSchedule_Request request = new SWS.GetDelinqSchedule_Request();
SWS.GetDelinqSchedule_Response response;
Here’s my sample code of the Request object.
// GetDelinqSchedule Request
request.OrgID = 123456;
Finally we can call the method and pass across the login object and the request object to perform our reservation. 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.GetDelinqSchedule(user_request,request);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
Note that if something goes wrong the service will respond with an exception. You’ll want to take a look at that message returned in that exception so it can be debugged.
For a full list of methods see SWS Methods.