Skip to content

Service

Webhook

Usage Scenario: Sending a notification to your service. Webhook

Parameter
Explanation
UrlThe address for the notification, variables can be used, and query parameters can be appended with the GET method.
MethodThe request method, supports only GET or POST.
BodyTo be filled in when Method is set to POST, supports only JSON format.

Google Sheet

Using Google Sheets: Reading, Modifying, and Deleting Data Before performing these actions, you need to grant Nstbrowser access to your Google Sheets. There are two ways to do this:

  1. Share the spreadsheet publicly.
  2. Share the spreadsheet with the Nstbrowser service account.

When you share the spreadsheet publicly, Nstbrowser will only have read access by default. If editing is required, you must set public permissions to "Editor."

If you plan to update cell values in the spreadsheet, you need to share it with the Nstbrowser service account. To do this, open the spreadsheet you want to share, click the "Share" button in the top right corner, and enter [email protected]

Google Sheet

Parameter
Explanation
Operation TypesOperation type, optional:
  Retrieve Cell Values from Spreadsheet
  Retrieve Spreadsheet Range
  Update Cell Values in Spreadsheet
  Append Cell Values in Spreadsheet
  Clear Cell Values in Spreadsheet
Use First Row as KeyThis option is available when the operation type is "Retrieve Cell Values from Spreadsheet." If checked, the first row of the retrieved results will be used as the key when saving the results to a variable
Spreadsheet IDThe Spreadsheet ID contains letters, numbers, hyphens, or underscores. You can find it in the Google Sheets URL.
https://docs.google.com/spreadsheets/d/1UBtq1DwZE_ZKmpjY1VEpj_Q84TmhovjxqOo__UbbafU/edit?gid=0#gid=0
RangeThe range of cell values you want to retrieve or update, including the worksheet name which is required. You can define the cell range using A1 notation (e.g., Sheet1!A1:B2) or R1C1 notation (e.g., Sheet1!R1C1:R2C2). This field is optional; if left blank, it will retrieve information from the entire worksheet.
Input Data OptionsHow the input data should be interpreted.For details: https://developers.google.com/sheets/api/reference/rest/v4/ValueInputOption
Insert Data OptionsDetermines how to modify existing data when entering new data. For details: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/append#InsertDataOption
Data SourceWhen the operation type is updating or appending cell values in the spreadsheet, you can choose:
  Variable
  Table
  Custom
ContentThe content to update or append to the spreadsheet, only supporting arrays in JSON format.
Save ToSave the retrieved values to a variable.