Hi I am having trouble with an end point, in postman I am making a get call to
http://localhost:3000/v2/support/patchStatus/123456
I have defined it in the serverless.yml function spec like
support:
handler: services/lambdas/src/support.handler
events:
- http:
path: v2/support/{exec}/{part}
method: get
we can have multiple calls like
GET http://localhost:3000/v2/support/pillStatus/123456
GET http://localhost:3000/v2/support/userStatus/123456
What is the best way to call the API using VSCode, i.e. what should be the config in launch.json. Any help will be appreciated.