get_headers
Retrieve column headers from a NetSuite saved search export, including column letters and header row index, to prevent typing errors in subsequent queries.
Instructions
Return the column headers of a NetSuite saved-search export plus their spreadsheet column letters (A, B, ..., AA, AB) and the 0-indexed header_row. Call this before query_export or aggregate_export when you don't already know the column names — every other tool takes column names verbatim and errors on typos with a difflib suggestion.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| headers | Yes | ||
| column_letters | Yes | ||
| header_row | Yes |