Retrieve the list of actions using API from Actions > With No End Date > Reapply

I would like to retrieve the list of actions (Actions > With No End Date > Reapply) from under Reapply category using REST API. We have few actions to that reapply various days and time. Appreciate if any one has any advise.`

You can do this using relevance similar to this against the /api/query API:

(id of it, name of it) of bes actions whose (not exists end date of it and reapply flag of it and not group member flag of it)

Or as a URI:

/api/query?relevance=(id%20of%20it%2C%20name%20of%20it)%20of%20bes%20actions%20whose%20(not%20exists%20end%20date%20of%20it%20and%20reapply%20flag%20of%20it%20and%20not%20group%20member%20flag%20of%20it)

Remove the and not group member flag of it portion if you want to see the member actions as well in the results.

2 Likes

Thank you Mike, It worked.