Cannot find a package of bulk file we need.

Catherine Wong
Catherine Wong Explorer
edited September 8 in CFS Bulk File/TM3

Hello Team,

I already input bucket-name and package Id to the /file-store/v1/file-sets endpoint, but we cannot find the package that we need.

This is our query:

GET /file-store/v1/file-sets?bucket=bulk-Custom&packageId=aaaa-bbbb-cccc HTTP/1.1
Host: api.refinitiv.com
Authorization: Bearer <Access Token>

I am requesting TM3 file.

Tagged:

Answers

  • Hello @Catherine Wong

    Please be informed that the /file-store/v1/file-setsendpoint returns 25 data by default. An application can add the 

    pageSize=100 query to get maximum return data 100 entries as follow.

    GET /file-store/v1/file-sets?bucket=bulk-Custom&packageId=aaaa-bbbb-cccc&pageSize=100 HTTP/1.1
    Host: api.refinitiv.com
    Authorization: Bearer <Access Token>

    Please note that the FileSets can be more than 100 records. The API returns data maximum 100 records per one query.

    If there are more than 100 records, the API returns the @nextLink  node which contains the URL for requesting the next page of query.

    I am strongly suggesting you use the pageSize=100 with the modifiedSince parameter. See more detail on this old post.