Hi,
While creating schedule for UserId 9021858 on 6th December using select api (https://selectapi.datascope.refinitiv.com/RestApi/v1/) we got below error. Attaching csv and notes file for reference.
ERROR:This instrument list cannot be used for a data arrival-based extraction.
However if I try to create a schedule using same instrumnet list and report template now, it is getting created without any issues. The issue was only on Dec 6th. Here is the code snippet(C#) that we used while creating schedule
schedule = new DataScope.Select.Api.Extractions.Schedules.Schedule
{
Name = “Vanguard_Vanguard-21-FI-FV-1600-OpenMarket_86ab2b1d-9f11-5878-aa25-b0e81ccd88ec_20211206214355”
TimeZone = “EST”
Recurrence = ScheduleRecurrence.CreateSingleRecurrence(“04:48:22 2021-12-06”, false),
Trigger = ScheduleTrigger.CreateDataAvailabilityTrigger(
true,
ExtendedTriggerInformation.CreatePremiumPricing(false),
null),
ListId = “0x07d057d7ea6d60dc”,
ReportTemplateId = “0x07d05afc872d60df”,
};
_extractionsContext.ScheduleOperations.Create(schedule);
Thank you,
Pooja CM