Is there a way to Search projects modified in the last X minutes/hours via API?

We would like to periodically get World Server project information via API to feed our dashboards, however, we would only like to get information about the projects that have been recently modified. While there is a created date property in the project response/filters, we don't see one for last modified date, is this possible?

Parents
  • We had a similar use case and couldn't find a way to query by recently modified date. We ended up using the task history as a proxy for the modification date. 

    1. Get projects via /ws-api/v2/projectGroups/search
    2. For each project's tasks, call /ws-api/v1/taskHistory
    3. Use the latest task history date as your modification date

    But this requires additional API calls per project, so it performance may not be feasible for you.

    Reply
    • We had a similar use case and couldn't find a way to query by recently modified date. We ended up using the task history as a proxy for the modification date. 

      1. Get projects via /ws-api/v2/projectGroups/search
      2. For each project's tasks, call /ws-api/v1/taskHistory
      3. Use the latest task history date as your modification date

      But this requires additional API calls per project, so it performance may not be feasible for you.

      Children
      No Data