search for historical files

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

Does the TM3 CFS API supports search for historical files?

Tagged:

Answers

  • Hi @Catherine Wong

    The RDP CFS API does not support the specific date/time query parameter. The supported time-related query parameters are as follows:

    /file-store/v1/buckets

    • createdSince - Return all buckets that have a created date after the specified Datetime.
    • modifiedSince - Return all buckets that have a modified date after the specified Datetime.
    • availableFrom - Return all buckets that become visible to permission users after the specified Datetime.
    • availableTo – Return all buckets that is no longer visible to permission user after the specified Datetime.

    /file-store/v1/file-sets/

    • availableFrom - Return all file-sets that become visible to permissioned users after the specified Datetime.
    • availableTo - Return all file-sets that is no longer visible to permissioned user after the specified Datetime.
    • contentFrom - Filter results by the age of the content within the file-set.
    • contentTo - Filter results by the age of the content within the file-set.
    • createdSince - Return all file-sets that have a created date after the specified Datetime
    • modifiedSince - Return all file-sets that have a modified date after the specified Datetime.

    /file-store/v1/files/

    • createdSince - Return all files that have a created date after the specified Datetime.
    • modifiedSince - Return all files that have a modified date after the specified Datetime.

    I hope this helps.