GoToWebinar (Create registrant) asks for a parameter that isn't an option?

Describe the problem/error/question

I am setting up my first workflow in n8n: Press a button, grab the first name, last name, and email address from a google sheet, and then register each person into GoToWebinar. First two steps are working fine, but when I go to add the GTW settings, it’s giving me an error for a missing parameter but there’s no way to set that parameter.

What is the error message (if any)?

GoToWebinar: Parameter “Timezone Name or ID” is required.

Please share your workflow

Timezone is not an option under the “Add Field” section.

{
{
  "meta": {
    "instanceId": "38854b91611be10b802cb07a428f81c5611ba52e3eaefda2f5a7d2eddbf6c884"
  },
  "nodes": [
    {
      "parameters": {},
      "id": "27c66a8e-8d47-4000-94e1-de305928b673",
      "name": "When clicking \"Execute Workflow\"",
      "type": "n8n-nodes-base.manualTrigger",
      "typeVersion": 1,
      "position": [
        780,
        360
      ]
    },
    {
      "parameters": {
        "documentId": {
          "__rl": true,
          "value": "XXXX{removed}XXXXX",
          "mode": "list",
          "cachedResultName": "GTW Importer ",
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/XXXXX{removed}XXXX/edit?usp=drivesdk"
        },
        "sheetName": {
          "__rl": true,
          "value": 234997300,
          "mode": "list",
          "cachedResultName": "n8n",
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/XXXXX{removed}XXXX/edit#gid=234997300"
        },
        "options": {}
      },
      "id": "c66ef489-e13b-4cc7-92b3-0e9340754cfb",
      "name": "Google Sheets",
      "type": "n8n-nodes-base.googleSheets",
      "typeVersion": 4,
      "position": [
        960,
        360
      ],
      "credentials": {
        "googleSheetsOAuth2Api": {
          "id": "2",
          "name": "Google Sheets"
        }
      }
    },
    {
      "parameters": {
        "resource": "registrant",
        "operation": "create",
        "webinarKey": "=XXXXX{removed}XXXX",
        "firstName": "={{ $json['First Name'] }}",
        "lastName": "={{ $json['Last Name'] }}",
        "email": "={{ $json.Email }}",
        "additionalFields": {}
      },
      "id": "e6891d01-5962-4947-83f4-e315f24217ed",
      "name": "GoToWebinar",
      "type": "n8n-nodes-base.goToWebinar",
      "typeVersion": 1,
      "position": [
        1180,
        360
      ],
      "alwaysOutputData": false,
      "credentials": {
        "goToWebinarOAuth2Api": {
          "id": "1",
          "name": "GoToWebinar account"
        }
      }
    }
  ],
  "connections": {
    "When clicking \"Execute Workflow\"": {
      "main": [
        [
          {
            "node": "Google Sheets",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Google Sheets": {
      "main": [
        [
          {
            "node": "GoToWebinar",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}

Share the output returned by the last node

Information on your n8n setup

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

Hey @Blaine,

Welcome to the community :cake:

That looks like we have forgotten to change something in the node, I have made a note and will get this fixed either over the weekend or on Monday morning so we can get it out for the next release.

1 Like

That’s great, thank you!

1 Like

Just tested this again on version 0.236.2 with the same result.

Ah my mistake, I didn’t get around to fixing it. I will try and get it done tomorrow before I have some days off.

Thanks, much appreciated! No rush, just didn’t want it to fall by the wayside. :slight_smile:

Just tested this again on version 1.1.1 with the same result.

Hey @Blaine,

I would expect that to be the case, I have not yet fixed it. I will however do it now before I forget again.

Quick update, I have just popped in the PR for this below. Once reviewed it will be merged in and will be available in the release following that.

Great, thank you! It is much appreciated. :slight_smile:

1 Like

New version [email protected] got released which includes the GitHub PR 6865.