For a deeper look into our DataScope Select REST API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials

question

Upvotes
Accepted
7 1 1 3

How to create Scheduled Extraction for SSS Intraday Pricing report template

One of our prospects would like to create recurring weekly Intraday Pricing scheduled extraction over DSS.

Can you advise how to code in REST API? I tried to search Postman codes, but cannot find a such example.

dss-rest-apidatascope-select#productapi
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
Accepted
260 2 2 4

@hiroko.goto Hi,

As discussed internally over MS Teams, for recurring, scheduled Schedule for Intraday Pricing you need, for example:

{
    "Name": "Example.RecurringSchedule.TimeTrigger3",
    "TimeZone": "Tokyo Standard Time",
    "Recurrence": {
        "@odata.type": "#DataScope.Select.Api.Extractions.Schedules.WeeklyRecurrence",
        "Days": [
            "Monday",
            "Tuesday",
            "Wednesday",
            "Thursday",
            "Friday"
        ]
    },
    "Trigger": {
        "@odata.type": "#DataScope.Select.Api.Extractions.Schedules.TimeTrigger",
        "At": [
            {
                "Hour": 23,
                "Minute": 59
            }
        ]
    },
    "ListId": "0x08d5d88dee49a11f",
    "ReportTemplateId": "0x08d869ab38b9a9e4",
    "OutputFileName": "test"
}

Where <ReportTemplateId> is of a Intraday Pricing report type.

As you asked TimeZone options can be found here: https://support.microsoft.com/en-us/help/973627/microsoft-time-zone-index-values under column 'Name of Time Zone'.

DSS 'API Reference Tree' page: selectapi.datascope.refinitiv.com/RestApi.Help/Context/Operation?ctx=Extractions&ent=Schedule&opn=Create

Best regards,

Gareth

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
5.8k 21 2 6

1709729061864.png (19.7 KiB)
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.