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.


CREATE operations

POST /v1/table/{essence}

Inserts one record in the specified table. Multiple records insertion is not supported.


READ operations


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.


UPDATE operations

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.

Parameters

ParameterValue
column_namecolumn_value

     * PUT /v1/table/{essence}/{sys_id}

     * PATCH /v1/table/{essence}/{sys_id}

DELETE operations

DELETE /v1/table/{essence}/{sys_id}

Deletes values from the sys_id column in the essence table.


  • No labels