The Workflows connector defines the built-in functions that can be used to access other Google Cloud products within a workflow.
This page provides an overview of the individual connector. There is no need to import or load connector libraries in a workflow—connectors work out of the box when used in a call step.
Google Sheets API
Reads and writes Google Sheets. To learn more, see the Google Sheets API documentation.
Spreadsheet ID
Note that every Google Sheets spreadsheet has a unique spreadsheetId
value and
that when using the connector, the spreadsheetId
can be retrieved from the
resp
result. By default, when you create a spreadsheet, the spreadsheet is
saved to your root folder on Google Drive. For more information, see
Write to Google Sheets from a workflow.
Google Sheets connector sample
YAML
JSON
Module: googleapis.sheets.v4.spreadsheets
Functions | |
---|---|
batchUpdate |
Applies one or more updates to the spreadsheet. Each request is validated before being applied. If any request is not valid then the entire request will fail and nothing will be applied. Some requests have replies to give you some information about how they are applied. The replies will mirror the requests. For example, if you applied 4 updates and the 3rd one had a reply, then the response will have 2 empty replies, the actual reply, and another empty reply, in that order. Due to the collaborative nature of spreadsheets, it is not guaranteed that the spreadsheet will reflect exactly your changes after this completes, however it is guaranteed that the updates in the request will be applied together atomically. Your changes may be altered with respect to collaborator changes. If there are no collaborators, the spreadsheet should reflect your changes. |
create |
Creates a spreadsheet, returning the newly created spreadsheet. |
get |
Returns the spreadsheet at the given ID. The caller must specify the
spreadsheet ID. By default, data within grids is not returned. You can
include grid data in one of 2 ways: * Specify a field mask listing your
desired fields using the fields URL parameter in HTTP * Set the
includeGridData URL parameter to true. If a field mask is set, the
includeGridData parameter is ignored For large spreadsheets, as a best
practice, retrieve only the specific spreadsheet fields that you want.
To retrieve only subsets of spreadsheet data, use the ranges URL
parameter. Ranges are specified using A1
notation.
You can define a single cell (for example, A1 ) or multiple cells (for
example, A1:D5 ). You can also get cells from other sheets within the
same spreadsheet (for example, Sheet2!A1:C4 ) or retrieve multiple
ranges at once (for example, ?ranges=A1:D5&ranges=Sheet2!A1:C4 ).
Limiting the range returns only the portions of the spreadsheet that
intersect the requested ranges. |
getByDataFilter |
Returns the spreadsheet at the given ID. The caller must specify the
spreadsheet ID. This method differs from GetSpreadsheet in that it
allows selecting which subsets of spreadsheet data to return by
specifying a dataFilters parameter. Multiple DataFilters can be
specified. Specifying one or more data filters returns the portions of
the spreadsheet that intersect ranges matched by any of the filters. By
default, data within grids is not returned. You can include grid data
one of 2 ways: * Specify a field mask listing your desired fields using
the fields URL parameter in HTTP * Set the includeGridData parameter
to true. If a field mask is set, the includeGridData parameter is
ignored For large spreadsheets, as a best practice, retrieve only the
specific spreadsheet fields that you want. |
Module: googleapis.sheets.v4.spreadsheets.developerMetadata
Functions | |
---|---|
get |
Returns the developer metadata with the specified ID. The caller must specify the spreadsheet ID and the developer metadata's unique metadataId. |
search |
Returns all developer metadata matching the specified DataFilter. If the provided DataFilter represents a DeveloperMetadataLookup object, this will return all DeveloperMetadata entries selected by it. If the DataFilter represents a location in a spreadsheet, this will return all developer metadata associated with locations intersecting that region. |
Module: googleapis.sheets.v4.spreadsheets.sheets
Functions | |
---|---|
copyTo |
Copies a single sheet from a spreadsheet to another spreadsheet. Returns the properties of the newly created sheet. |
Module: googleapis.sheets.v4.spreadsheets.values
Functions | |
---|---|
append |
Appends values to a spreadsheet. The input range is used to search for
existing data and find a "table" within that range. Values will be
appended to the next row of the table, starting with the first column of
the table. See the
guide
and sample
code
for specific details of how tables are detected and data is appended.
The caller must specify the spreadsheet ID, range, and a
valueInputOption. The valueInputOption only controls how the input
data will be added to the sheet (column-wise or row-wise), it does not
influence what cell the data starts being written to. |
batchClear |
Clears one or more ranges of values from a spreadsheet. The caller must specify the spreadsheet ID and one or more ranges. Only values are cleared -- all other properties of the cell (such as formatting and data validation) are kept. |
batchClearByDataFilter |
Clears one or more ranges of values from a spreadsheet. The caller must specify the spreadsheet ID and one or more DataFilters. Ranges matching any of the specified data filters will be cleared. Only values are cleared -- all other properties of the cell (such as formatting, data validation, etc..) are kept. |
batchGet |
Returns one or more ranges of values from a spreadsheet. The caller must specify the spreadsheet ID and one or more ranges. |
batchGetByDataFilter |
Returns one or more ranges of values that match the specified data filters. The caller must specify the spreadsheet ID and one or more DataFilters. Ranges that match any of the data filters in the request will be returned. |
batchUpdate |
Sets values in one or more ranges of a spreadsheet. The caller must specify the spreadsheet ID, a valueInputOption, and one or more ValueRanges. |
batchUpdateByDataFilter |
Sets values in one or more ranges of a spreadsheet. The caller must specify the spreadsheet ID, a valueInputOption, and one or more DataFilterValueRanges. |
clear |
Clears values from a spreadsheet. The caller must specify the spreadsheet ID and range. Only values are cleared -- all other properties of the cell (such as formatting, data validation, etc..) are kept. |
get |
Returns a range of values from a spreadsheet. The caller must specify the spreadsheet ID and a range. |
update |
Sets values in a range of a spreadsheet. The caller must specify the spreadsheet ID, range, and a valueInputOption. |