Select Class


Methods of the Record class

Guides

Welcome to class reference

Class: Record
NameTypeComment
RecordClassThis class is to help the user interact with Records.

Note: Remember to add Roles to Groups
and add Groups to Users that will be a part of the workflow.

Method: delete
NameTypeComment
deleteMethodDelete a Record from a Table
ReturnRequirements
Empty response.none

Parameters
NameCommentType
tableApiNameThe Table api name.string
recordIdIdentifier for the record.string



Examples

Example case:
Delete a record

Description:
Deletes a record from a Table.

// Variables const tableApiName = "business_mate_task_list"; const recordId = "ba384680-859c-4bab-917b-d78d7ab3d7dc"; // Run the method and store the results in a variable const result = await Record.delete(tableApiName, recordId); // Test print the result console.log(result);