Path Parameter in Postman
Path = location of the resource /… /
Parameter = a value that we set
Key Things:
1. Path Parameter part of URL
2. Its not optional
Path parameters form part of the request URL, and are referenced using placeholders preceded by : as in the following
syntax: /customer/:id
If you want to identify a resource, you should use Path Variable. But if you want to sort or filter items, then you should use query parameter
#postman #apitesting #pathparameter