Projects Table "updateAt" not updating

Hello,

I am trying to built an application that would ping the API periodically and check if combo curve projects have been update since the last time it was checked. My plan was to use the “updateAt” field in the projects table. This morning I played around in a project and made some changes but the “updateAt” field did not seem to move. What triggers a change in that field?

Regards,

Eduardo

Eduardo,

Only changes to the project model itself will be reflected in updatedAt, e.g., renaming the project or adding/removing wells to it. Changes to models inside a project won’t, you would have to look at the updatedAt or any other relevant timestamp in those specific models. For example, the forecast models have runDate, and the econ-runs too.

See the API documentation for the filters that are expected to be used for pulling data incrementally:

Regards

1 Like

Thanks this is perfect