Api vs odata

Hi,
I am trying to test orchestrator api using swagger. what is the difference between end points /api/* and /odata/*

Thank you,

@A_Learner,

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 :slight_smile:

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.