| Name | Type | Comment |
|---|---|---|
| Record | Class | This 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. |
| Name | Type | Comment |
|---|---|---|
| update | Method | Update a Record from a Table |
| Return | Requirements |
|---|---|
| The updated Record or an error message. | none |
| Name | Comment | Type |
|---|---|---|
| tableApiName | The Table api name. | string |
| recordId | Identifier for the record. | string |
| data | A table with fields and values that needs an update. | any |
Example case:
Update record
Description:
Use this method to update any field of a record. Simply replace the values in 'data'
// Variables const tableApiName = "business_mate_task_list"; const recordId = "ba384680-859c-4bab-917b-d78d7ab3d7dc"; const data = { "f_title": "task01", "f_description": "Prepare the test environment", "f_priority": "2", "f_assigned_to": [ { "id": "332ed86a-4375-41fb-979b-a42d1971cdae", } ], "f_deadline": "2021-12-19T22:00:00.000Z" }; // Run the method and store the results in a variable const result = await Record.update(tableApiName, recordId, data); // Test print the result console.log(result);
Start your 3 months of free trial now.Sign up and start your business flow right away
Get your business mate now