0👍
It was the processing of the request in node.js so changing this line:
const id = parseInt(request.params.id)
to worked:
const id = request.params.id
Source:stackexchange.com
0👍
It was the processing of the request in node.js so changing this line:
const id = parseInt(request.params.id)
to worked:
const id = request.params.id