Retrieve File Index issue

I am trying to retrieve file information from HighQ for only active sites. Upon investigating, I found that there are 206 active sites on HighQ and but when executing the API to fetch files

, I only received 3,217 files spanning about 5 distinct site IDs. The business informed me that there are around 33000 documents that are present on HighQ. I am currently using this endpoint for the

API call to get Site information : https://collaborate.ocorian.com/estera/api/1/sites?filterby=all.

For root SiteFolder:"">collaborate.ocorian.com/.../" + si.sitefolderID + "/items"

Gets the items inside folder: "">collaborate.ocorian.com/.../" + fol.id.ToString() + "/items";

Get files : "collaborate.ocorian.com/.../files + fol.id.ToString() + "\"";

This is a small sample of how the file info is being saved:

 

What is the best approach to retrieve all file details (file info only) from HighQ?

  • +1
    Thomson Reuters Thomson Reuters staff member

    Hi,
    We're looking into it.

    Thank you.

  • +1
    Thomson Reuters Thomson Reuters staff member
    in reply to Rakesh .

    Hi, 

    After executing the endpoint /api/1/sites?filterby=all to fetch site information.

    You can get folders of the specific site by using /api/{{version}}/folders/{{folderid}}/items endpoint.

    By using these folderid's you can get file information by using /api/{{version}}/files?q="folderid={{folderid}}" endpoint.

    Thank you.