Excel Online Step

Appends a row to an Excel Online workbook per new session. Use this step to log submissions, create audit trails, or feed lightweight analytics to Excel Online.

Top-level properties

nametyperequiredconstraints
connectionstringyesName of the connection instance
actionstringyesenum: APPEND_RECORDOperation to perform
workbookstringyesWorkbook id
workbookNamestringyesHuman-friendly workbook name
worksheetstringyesTarget worksheet/tab name
hasHeaderRowbooleanyesWhether the sheet's first row contains headers
valuesarray[string]yesOrdered cell values to append

Example (JSON)

{
  "connection": "excel-online-prod",
  "action": "APPEND_RECORD",
  "workbook": "1x2y3z",
  "workbookName": "Customer Intake",
  "worksheet": "Submissions",
  "hasHeaderRow": true,
  "values": [
    "2025-09-16T10:30:00Z",
    "Marc-Andre",
    "[email protected]",
    "Pro"
  ]
}