We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
When using a dynamic endpoint, e.g.
server.routes([ { path: '/training/:id', methods: [ { type: 'get', file: 'data/somenumbers.txt' }, ], },
How do I return different data depending on whether the GET request is from /training/1 or /training/2 ?
Activity