how to filter on multiple FIDs with TickHistory Raw Request?

Vijay
Vijay Newcomer

1. I see that there is an option to "Select FID Filters" in the Datascope report creation GUI. How do I do the same with REST request?

2. Also in GUI, there is FID search option to specify AND / OR condition as in the screenshot below. How do I specify this condition with REST request?

image

Best Answer

  • @Vijay,

    Q. I see that there is an option to "Select FID Filters" in the Datascope report creation GUI. How do I do the same with REST request?

    A: In the query condition, add this parameter:

    "Fids": "275,393,875,1010",

    For more information, see this section of the REST Tutorial 8.

    Q. Also
    in GUI, there is FID search option to specify AND / OR condition as in the
    screenshot below. How do I specify this condition with REST request?

    A: In the query condition, add these parameters (possible values for these 2 parameters are "AND" or "OR", respectively "All" or "Matching", default values are "AND" respectively "Matching"):

    "FidListOperator": "OR",
    "FidDisplayOption": "Matching"

Answers