How to send operator parameters in String

I use
bpy.types.UILayout.template_ID(data , property , new=" " , open=" " , unlink=" " , filter=‘ALL’ , live_icon=False )
I need to send one parameter to the operator new. Is this possible?

The arguments that are something=‘something’ are keyword arguments. You can drop any of them or use them in any order after the required arguments (in this case, data, property).

I meant a little different
template_ID(data, property, new="something")
How can I pass the parameter to the something operator in this case.
The template_ID function does not return any data
In cases with the operator function, we can do so

op = layout.operator(“something”, text = “Test”)
op.parameter_1 =“some text”