App Runtime API
The App Runtime provides a list of REST APIs so that users from other systems can interact with the entities created in App Designer using the REST. This REST API in APP Runtime can be used to insert, update and delete the entity configuration in database. This section gives the details of the methods provided by the APIs. The methods can be added to the context root to call the service.
Request
Description
HTTP Method
1. /login
Login Process for get token id.
POST
2. /entity/{entityID}/search
Search Data in {entityID} by parameter in URL after running you will get data Json Format from {entityID}.
GET
3. /entity/{entityID}/get
Get Data Json Format from {entityID} after you pass parameter key in URL, you will get JSON data in all module of entity.
GET
4. /entity/{entityID}/save
Save Data JSON Body of {entityID} into Database.
POST
5. /entity/{entityID}/delete
Delete Data in Database from key parameter.
POST
6. /entities/save?mainEntityID={entityID}
Save Data JSON Body of {entityID} in Parent, Child Tab format into Database.
POST
7. /file/upload
Upload File into Server following configuration.
POST
8. /file/{id}/download
Download File From {id} which is uploaded from server.
GET
Last updated