How to get Only Completed App task in Get App Task Acitvity

Hi

We are using Get App Tasks Activity in UiPath Studio and wanted to apply certain filters in activity. like status in Only Completed and all task perform in last 1 month. so how do we apply that filter in activity.

have a look at the REST API endpoint:


and also explore the filter options

and feel free to do the first experiments & prototypings within SWAGGER

[Action Center - Get App Tasks]

Use the Filter property of Get App Tasks with an OData query string combining status and date filter..

For last 1 month completed, use below.
Status eq ‘Completed’ and LastModificationTime ge {{Now.AddMonths(-1).ToString(“yyyy-MM-ddTHH:mm:ssZ”)}}

(Action Center - Get App Tasks)