Overview
On this page
The REST API handles CRUD (Create, Retrieve, Update, Delete) operations for all entities, retrieving data using the FETCH language and executing custom workflows.
The REST API is composed of the following functional areas:
Entity API
Handles CRUD (Create, Retrieve, Update, Delete) operations for all entities.
Method | URL | Description |
---|---|---|
GET | /rest/entity/{entityName}/{key} | Retrieves an entity by its key. |
POST | /rest/entity/{entityName} | Creates an entity. |
POST | /rest/entity/{entityName}/{key} | Updates an entity. |
DELETE | /rest/entity/{entityName}/{key} | Deletes an entity by its key. |