ParameterID as shared readonly/constant value

Hi, I want to optimize setting parameters by using parameter id instead of name. I found that I can only retrieve PARAMETER_ID from EventDescription.
What I also found is that parameters with same name have same ID.
And I have plenty of same parameters for different events, like “Speed” or “2D” for dozens of events. And I simply reuse same constant for different events.
I see no API for retrieving parameter globally by name and type, but maybe there is an API for retrieving all events of specific bank so I can search their parameters and cache their ids?

Hi,

An option may be FMOD Studio | Studio API Reference - Studio:: Bank::getEventList which will return an array of all the events added to the bank. You can retrieve a list of loaded banks with FMOD Studio | Studio API Reference - Studio::System::getBankList.

Would it be possible to elaborate on this?