Filter All-Collections Result in postman-api

Your question may already have an answer on the community forum. Please search for related topics, and then read through the guidelines before creating a new topic.

Is there away to filter the response coming from (possibly by workspace id):
https://api.getpostman.com/collections

From what I understood only way to achieve what I want to do is:

  1. invoke https://api.getpostman.com/workspaces/{workspace-id}
  2. retrieve the content of extractable from json path ‘$.workspace.collections[*].uid’
  3. invoke https://api.getpostman.com/collections/{collection-uid} for each UID I got from step (2).

Could some one confirm?