You are viewing an old version of this page. View the current version.
Compare with Current View Page History
« Previous Version 9 Next »
The REST API allows you to perform create, read, update and delete (CRUD) operations on existing tables.
POST /v1/table/{essence}Inserts one record in the specified table. Multiple records insertion is not supported.
POST /v1/table/{essence}
Inserts one record in the specified table. Multiple records insertion is not supported.
GET /v1/table/record/{essence}Retrieves multiple records for the essence table.
GET /v1/table/record/{essence}
Retrieves multiple records for the essence table.
GET /v1/table/record/{essence}/{sys_id}Retrieves records for the sys_id column of the essence table.
GET /v1/table/record/{essence}/{sys_id}
Retrieves records for the sys_id column of the essence table.
PUT /v1/table/{essence}/{sys_id}Updates values for the sys_id column in the essence table.
PUT /v1/table/{essence}/{sys_id}
Updates values for the sys_id column in the essence table.
PATCH /v1/table/{essence}/{sys_id}Updates values for the sys_id column in the essence table.
PATCH /v1/table/{essence}/{sys_id}
* PUT /v1/table/{essence}/{sys_id}
* PATCH /v1/table/{essence}/{sys_id}
DELETE /v1/table/{essence}/{sys_id}Deletes values from the sys_id column in the essence table.
DELETE /v1/table/{essence}/{sys_id}
Deletes values from the sys_id column in the essence table.