How can i pass parametar from my end point to controller

@WardenCommander
You can try using ctx.request.query to get the query params.

Like this:

const { objectid, datefrom, dateto, persons } = ctx.request.query;
4 Likes