PathParam
A PathParam is a parameter that is part of the Uniform Resource Identifier (URI) of a web resource. These parameters are embedded directly within the path of the URL, as opposed to being appended as query parameters after a question mark. For example, in the URL `/users/123/orders/456`, `123` and `456` are path parameters representing a user ID and an order ID, respectively.
PathParam values are typically extracted by a web framework or a routing mechanism on the server-side. This
The primary use of PathParams is to identify specific resources. They are crucial for creating RESTful APIs
---