//add data to the report
dispatch_notification.addRowData(row_data);
//create the call
UploadDispatchNotesCall call = new UploadDispatchNotesCall();
//set the authentication
call.setUsername("user@email.com");
call.setPassword("password");
//set the orders to be notified
call.setDispatchNotification(dispatch_notification);
//make the call to the playtrade API
call.callUploadDispatchNotes();
System.out.println("SUCCESS: Submitted Dispatch Notification feed to PlayTrade '" + call.getBatchfile().getAbsolutePath() + "'");
}