Is there a way to define optional path parameters in the Falcon web framework? Currently, I'm declaring separate routes for modifying the same resource.
app.add_route('/users/', users_api_post)
app.add_route('/users/{id}', users_api_put)
PS: There's a similar question on SO for Flask framework.