Route Editor

This screen is where you define your routes.

The route collection can be thought of as your controller name. Multiple routes can exist in a collection.

The base route in a route collection is the route that is prepended to all route in the collection. It’s usually api/{plural_route_collection_name}

The route field is the name for this route. It takes parameters in thr format {name:type} where name is the name of your parameter and type is one of the types we support like integer, string etc.

The HTTP method is self explanatory.

The Query/Command is the query or command this route will be bound to. Codenesium is smart enough to know based on the route what needs to be passed to the query/command.