Endpoint types
Data-group endpoints
You can access data groups using a data-group endpoint. When you create a data-group endpoint, you can access the data group in which you create the endpoint. However, you can also access all other data groups of your portal. The GET, POST, PATCH and DELETE methods can be used to create a data-group endpoint.
If you use the GET method, you can choose between "Read individual data record" or "Read multiple data records".
Read individual data record
Example
GET /api/app/{app-guid}/{entity-name}/{id}
Read multiple data records
Example
GET /api/app/{app-guid}/{entity-name}
Create data record
Example
POST /api/app/{app-guid}/{entity-name}
Change data record
Example
PATCH /api/app/{app-guid}/{entity-name}/{id}
Delete data record
Example
DELETE /api/app/{app-guid}/{entity-name}/{id}
Process endpoint
You can use process endpoints to trigger workflows. You can pass parameters to the process via the process endpoint.
Example
POST /api/app/{app-guid}/{action-name}
Groovy endpoint
Groovy endpoints allow you to run Groovy scripts.
Example
POST /api/app/{app-guid}/{script-action-name}