DSS REST API on demand extraction 404 error

Options
zhang
zhang Newcomer

Every time I send an on demand extraction request, I get a 404 response. Any help would be appreciated. Thank you.

I've formatted the request as below:

method:

POST

URL:

https://hosted.datascopeapi.reuters.com/RestApi/v1/Extractions/ExtractWithNotes

header

{
'Authorization': u'Token <token>',
'Content-Type': 'application/json',
'Prefer': 'respond-async'
}

content

{
'@data.type': '#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.CompositeExtractionRequest',
'ContentFieldNames': [
'RIC',
'CUSIP'],
'IdentifierList': {
'@data.type': 'ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList',
'InstrumentIdentifiers': [
{
'Identifier': 'IBM.N',
'IdentifierType': 'Ric'
},
{
'Identifier': 'AAPL.O',
'IdentifierType': 'Ric'
}
],
'UseUserPreferencesForValidationOptions': 'false',
'ValidationOptions': 'null'}
}

Best Answer

  • gteage01
    gteage01 LSEG
    Answer ✓

    @zhang

    Hi,

    https://hosted.datascopeapi.reuters.com/RestApi.Help/Home/StatusCodes

    404: Not Found indicates that the resource specified by the request URL does not exist. The response body will typically include the entity type and id that could not be found.

    The example application may help here Url can be found on the landing page: https://hosted.datascopeapi.reuters.com/RestApi.Help/Home/Index, the On Demand example that is included in the example application for Create: Composite is:

    POST https://hosted.datascopeapi.reuters.com/RestApi/v1/Extractions/ExtractWithNotes HTTP/1.1
    Authorization: Token <your_auth_token_goes_here>
    Prefer: respond-async
    Content-Type: application/json; odata=minimalmetadata
    {
    "ExtractionRequest": {
    "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.CompositeExtractionRequest",
    "ContentFieldNames": [
    "Daily Beta - 180 Days",
    "Volatility - 30 days",
    "Market Capitalization",
    "Average Volume - 30 Days",
    "Volume",
    "Total Shares - Listed"
    ],
    "IdentifierList": {
    "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
    "InstrumentIdentifiers": [
    {
    "Identifier": "IBM.N",
    "IdentifierType": "Ric"
    }
    ],
    "ValidationOptions": null,
    "UseUserPreferencesForValidationOptions": false
    },
    "Condition": null
    }
    }

Answers