Forwarding a request from Nodejs

I need to forward / redirect request received by nodejs endpoint to a .net 7 web API end point. Nodejs endpoint is triggered by an external party and it receives the request as expected. the problem is redirecting / forwarding from nodejs to .NET web api endpoint, its not getting triggered.

This is my code block.

exports.rerouteIncomingEmail = async (req, res)  => {

var to = extractRequestHeaders(req.headers, 'x-recipient');
var endPoint = await services.getPushEndpointFromEmailList(to,req.app.locals.db);

endPoint ? res.redirect(308,endPoint) : res.send(200,'endpoint not found');    

};