For a deeper look into our DataScope Select REST API, look into:
Overview | Quickstart | Documentation | Downloads | Tutorials
Is it possible to set the delivery type of a BondScheduleReportTemplate to "FTP" ? If so - how? The last line gives an error.
BondScheduleReportTemplate myBondScheduleReportTemplate = new BondScheduleReportTemplate();
myBondScheduleReportTemplate.Name = "myBondScheduleTemplate";
myBondScheduleReportTemplate.OutputFormat = ReportOutputFormat.CommaSeparatedValues;
myBondScheduleReportTemplate.ShowColumnHeaders = true; myBondScheduleReportTemplate.DeliveryType = "Ftp";
Thanks in advance!
You can use the following statement to specify the FTP option.
myBondScheduleReportTemplate.DeliveryType = ReportDeliveryType.Ftp;
The DeliveryType is enumeration defined as follow.
namespace ThomsonReuters.Dss.Api.Extractions.ReportTemplates { public enum ReportDeliveryType { None = 0, Ftp = 1, Sftp = 2 } }
Hi @03c56457-9bfe-499b-8780-5db6ead5f2d6
The "FTP" DeliveryType in the report template is for FTP Automated Delivery which deliver output to your FTP server via FTP Push. This function is only available through the private network via Delivery Direct or BT Radianz (MPLS).
If you would like to manually download your extractions from DataScope Select FTP server, you can select the "Enable FTP access" in User Preference. DataScope Select automatically delivers your extractions to DataScope Select FTP server. For more information, please see the FTP User Guide.
Thank you.
I understand what you are saying. My question was about how to specify the Ftp option in the delivery type attribute. Note that the compiler has a red underline on the statement.