Is QUOTE LISTS -> GET SIMPLE DATA V2 API call no longer available?

Options
ovx-wxu
ovx-wxu Newcomer
I'm trying to use the call to make retrieve multiple RICs within one call, and I can't find the section for this API call in the documentation.


Is this the call I should make to get multiple RICs at once? If so, can someone provide me with the proper JSON endpoint, headers and sample request body?


Thank you.

Tagged:

Best Answer

  • Gurpreet
    Gurpreet admin
    Answer ✓

    Hi @ovx-wxu, The call accepts three input parameters - RIC, Fields and Validation Mode. See this example JSON message below:

    {
      "GetSimpleData_Request_2": {
        "RICs": {
          "RIC": [
            "IBM.N",
            "MSFT.O"
          ]
        },
        "FIDs": {
          "FID": [
            "DSPLY_NAME",
            "TRDPRC_1"
          ]
        },
        "validationMode": "Strict"
      }
    }

    I will raise the missing documentation problem with the product team.

Answers