cURL
curl --request POST \ --url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#GOOGLE_SHEETS_CREATE_ROW' \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "action": "GOOGLE_SHEETS_CREATE_ROW", "parameters": { "spreadsheetId": "<string>", "worksheet": "<string>", "additionalFields": {} } } '
Your Paragon User Token (JWT), which you can generate using your project's signing keys.
Your Paragon Project ID. You can copy your Project ID from your dashboard URL or by clicking Copy Project ID under the Environment switcher.
Show child attributes
The spreadsheet ID to create a row in. Defaults to using the first worksheet in the selected spreadsheet
Worksheet : Your worksheet must have column headers.
Specify fields to create this row with, as an object with keys of Column Names. (example: { columnName1: "columnValue1", columnName2: "columnValue2", columnName3: "columnValue3", columnName4: "columnValue4", })
Success
Was this page helpful?