It’s nothing but just how the resources are organized. It delineates how to access specific resources or data points within the API. For example, in the path “/api/Stats/GetJobsStats”:
/api
represents the base endpoint./Stats
is a specific resource within the API./GetJobsStats
is the action or specific operation you want to perform on that resource.
Similarly we have few others also like
/forms/
/odata/
It’s a way to organize and direct the flow of data requests and responses within an API.
Thanks,
Ashok