A web service endpoint is an interface that you can call up using a URL, e.g. to offer a REST API in the app.
When called, defined actions are executed without a graphical user interface. The result of the actions is returned in the specified format.
You must specify the following for each web service endpoint:
-
Route: Specify via which URL and with which parameters the endpoint can be accessed. You can also define the accepted HTTP method.
-
Response: Specify the format in which the generated data is returned to the calling client app.
-
Actions: Specify all actions that are executed in sequence as soon as the endpoint is called by a client app.
See also