I have a dummy function inside the Apps Script that I want to execute with Postman.
Apps Script simple dummy function
Every seems to be OK in my postman request, but I always recieve an error 500.
Here’s the raw body:
{
“function”: “sendData”,
“parameters”: [],
“devMode”: false
}
The auth token and ScriptId are correct.
This is the response:
{
“error”: {
“code”: 500,
“message”: “Internal error encountered.”,
“status”: “INTERNAL”
}
}
It’s driving me crazy. Any help on that?
I’m trying to execute a function that resides in the Apps Script from a Google Sheet.
I’m expecting to recieve an http code 200.
Yoannis Pérez Guerra is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.