You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Next »

The REST API allows you to perform create, read, update and delete (CRUD) operations on existing tables.


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.


URL format


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