-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Closed
Labels
enhancementNew feature or requestNew feature or requesttriagedFor maintainers: This issue has been triaged by a Pipedream employeeFor maintainers: This issue has been triaged by a Pipedream employee
Description
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 requestNew feature or requesttriagedFor maintainers: This issue has been triaged by a Pipedream employeeFor maintainers: This issue has been triaged by a Pipedream employee
Type
Projects
Status
Done