Authenticated spreadsheet value updater
[sdk/google/spreadsheet/Authenticated spreadsheet value updater]
Authenticates the service user and updates dedicated spreadsheet. Example:
session Id
receives "spreadsheet_session"@0auth data
receives { "email": "email@email.com", "key": "TopSecretKey!" }@0spreadsheet Id
"1_ewweewweFileID"@0update data
receives { "update meta data": { "range": "Sheet1!A1:B10" }, "values": [ ["A1 value", "B1 value"], ["A2 value", "B2 value"] ] }}@0done
sends null@0
Keywords: google, drive, authentication, sdk, spreadsheet, update
Input ports
session Id:
string
Receives the session id of the spreadsheet action. Example: "spreadsheet_session"
auth data:
{"email": string, "key": string}
Receives the authentication data of service account. Example: { "email": "email@email.com", "key": "TopSecretKey!" }
spreadsheet Id:
string
Receives the id of the spreadsheet to be updated. Example: "1_ewweewweFileID"
update data:
{ "update meta data": { "range": "Sheet1!A1:B10" }, "values": [ ["A1 value", "B1 value"], ["A2 value", "B2 value"] ] }
Output ports
done:
null
Sends null if the action was successful. Example: null
error:
{"error": string}
Sends the error which happened during the execution of the action. Example:. {error: "Something went wrong!"}
Last updated