Skip to content

[FEATURE] Include Column Names in Google Sheets Webhook Responses #18278

@SheVyY

Description

@SheVyY

Is your feature request related to a problem?

Currently, Google Sheets triggers return data as positional arrays without column identifiers, making it hard to programmatically identify which value corresponds to which column without manual mapping.

Describe the solution you'd like

Transform webhook responses from array format to key-value objects using column headers:

Current:

"newRow": [
  0: "test1",
  1: "test2"
]

Proposed:

"newRow": {
  "column_header_1": "test1", 
  "column_header_2": "test2"
}

Do you have a workaround?

Manual index-to-column mapping that breaks when sheet structure changes and requires additional API calls to fetch headers.

Comparable features in other tools?

Make.com for example provide column names as keys in their webhook responses.

Metadata

Metadata

Assignees

Labels

enhancementNew feature or requesttriagedFor maintainers: This issue has been triaged by a Pipedream employee

Type

No type

Projects

Status

Done

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions