you can't have 2 endpoints that look the same. In ...
# guide
a
you can't have 2 endpoints that look the same. In this case
PATCH /{user_id}
is the same as
PATCH /${_id}
As in, api gateway uses those names to map the path parameters, but when you have 2 endpoints with the path parameter in the same location in the url it won't know which lambda to pick
s
@Arpad Thanks for the help. I got your poing.