How to use spaces in Originate command?

We need to be able to use spaces on apps in the originate command.

For example:
originate user/ext@context &some_app(something somethingelse)

some_app should be exected as:
some_app(something somethingelse)

Instead FreeSWITCH executes:
some_app(something)

Is there a solution?

Hello, Please see mod_commands | FreeSWITCH Documentation

Thanks for the response. I’ve found the solution, you need to use single quotation marks.

For example:
originate user/ext@context ‘&some_app(something somethingelse)’