Invalid REST API invoke URL

Hello everybody.

Can somebody please tell me what is wrong with this REST API invoke URL?

https://api.appsheet.com/api/v2/{1c6e4add-154b-4990-a528-a6a708af92e9}/tables/{Sheet1}/Add?applicati...

App ID: 1c6e4add-154b-4990-a528-a6a708af92e9

Source: Test         Qualifier: Sheet1
0 1 181
1 REPLY 1

I don't think you should have "Add" in there. It should be "Action" and then you specify the action in the payload.

This has worked for me (invoked from Google Apps Script so adjust accordingly): The url like: 'https://api.appsheet.com/api/v2/apps/' + appId + '/tables/' + tableName + '/Action?applicationAccessKey=' + accessKey

And the payload beginning:

{
"Action": "Add",