Hi @parth_moradiya. As I said before, we can not suppress the first element in a pattern. However, we can do something similar, such as suppress the assembly component that is within that element, or turn the visibility of that assembly component within that element off. I have done something like that before.
Here is a similar example line of code to suppress just the first assembly component from within the first element in an assembly component pattern.
Patterns.Item("MY PATTERN").Element("Element:1").Occurrences.Item(1).Suppress
...and here is another similar example line of code to only turn its visibility off, instead of suppress it.
Patterns.Item("Z-POST PATTERN").Element("Element:1").Occurrences.Item(1).Visible = False
Suppressing an entire browser folder full of stuff is a whole other different, complicated matter. Whether or not we can suppress all the contents of that folder may depend on what all is in that folder. This task would likely need to include obtaining a reference to the main BrowserNodes collection for the Document, then getting the 'Model' one, then its top node, then finding that one specific BrowserFolder amongst all its top level nodes. Then selecting it by code. Then finding the ControlDefinition for suppressing multiple items in an assembly, then execute that command. It can be done, and there are examples like that here on this forum that can be found with some searching. I have likely been involved in a few discussions in the area of navigating the model browser tree, and bundling assembly components into browser folders, but I do not have an already existing example code to share for suppressing a folder. Below is a link to one such forum response, but that example may look a bit more complicated than what you had in mind, and could likely be simplified quite a bit for your needs.
https://forums.autodesk.com/t5/inventor-programming-ilogic/read-browser-folder-name-if-re-then-suppr...
Wesley Crihfield

(Not an Autodesk Employee)