More Verbose Error Messages On Google Calendar Node

Describe the problem/error/question

Hi, I’m working on a sync from Fibery to Google Calendar and I was wondering if there is some way to get the entire json error when using either of the continue on error options. I want to skip errors for already deleted Events, but stop the workflow for all others. I get a JSON error when I let the node error normally, but only a string for either of the continue options.

What is the error message (if any)?

Node Error:

 { "error": { "errors": [ { "domain": "global", "reason": "deleted", "message": "Resource has been deleted" } ], "code": 410, "message": "Resource has been deleted" } }

Continue Error:

"error": "Your request is invalid or could not be processed by the service"

Please share your workflow

(Select the nodes on your canvas and use the keyboard shortcuts CMD+C/CTRL+C and CMD+V/CTRL+V to copy and paste the workflow.)

Share the output returned by the last node

Information on your n8n setup

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app): n8n cloud
  • Operating system: macOS

So you want to get all the success and error output together ?

Maybe a Merge node can help you on this.

1 Like

Thanks, I think I’m having a bit of a different issue. Either of the On Error → Continue or On Error → Continue (using error output) give me a data and error output together. My issue is that the error provided in either of these options is missing all the json data that is provided when I use the On Error → Stop Workflow option.

This doesn’t give me enough information to understand what kind of error I received.