Renaming Openwhisk Web Action Endpoint

I’m new to OpenWhisk. I am using the serverless-openwhisk plugin. It looks like when you create a web action the default endpoint is something like:

https://<host_name>/api/v1/web/guest/default/<service name>-dev-<function name>

If I have a service called products and a function called products I get:

https://<host_name>/api/v1/web/guest/default/products-dev-products

What I want for my endpoint is:

https://<host_name>/api/v1/web/guest/default/products

Is this possible via a serverless.yml configuration?

Thx