Skip to main content

zoho@0.3.1

addRow

addRow(db, table, rowData) ⇒ Operation To add a row data to a database table

Kind: global function

ParamTypeDescription
dbstringDatabase
tablestringDatabase table
rowDataobjectrow data to be added into the database

Example

addRow(
'testing_openfn',
'Customers',
fields(field('Subject', dataValue('formId')), field('Status', 'Closed'))
);