The GoTo Community is currently experiencing some technical issues affecting new posts and comments. We are actively working with our service provider and apologize for the frustration.
Forum Discussion
elamaster
4 years agoVisitor
How to determine the dial-in number and access code programatically
I'm using the GTT API to create sessions and register attendees. This is also the only method available today to suppress the GTT registration email so that we can send one of our own. The problem ...
- 4 years agoHere's what support says:
I'm (deleted) from the L3 Tech Team. Currently, there is no API or method to get the dial-in phone number and access code.
You can get it downloading the .ICS file, or once the training is created you can click on the details and you will find all the info under the Audio Tab.
GlennD
4 years agoGoTo Manager
Hi elamaster, welcome to the community.
The GoTo Training API covers:
- Schedule trainings of one or more sessions
- Tailor your trainings with panelists, polls, questions and surveys
- Accept registrations
- Manage registrants and, once the training starts, attendees
- View data about historical and future webinars, registrants and attendees
So you can schedule a session and register an attendee, but the email with the attendee's unique join link and the dial-in information is still going to be sent from the GoToTraining email customercare@gototraining.com
- elamaster4 years agoVisitorThe API allows the suppression of the registration email under "disableConfirmationEmail" when doing a POST to https://api.getgo.com/G2T/rest/organizers/{organizerKey}/trainings
{
"name": "string",
"description": "string",
"timeZone": "string",
"times": [
{
"startDate": "2019-08-24T14:15:22Z",
"endDate": "2019-08-24T14:15:22Z"
}
],
"registrationSettings": {
"disableConfirmationEmail": true,
"disableWebRegistration": true
},
"organizers": [
0
]
}
When you follow that up with a registration to POST https://api.getgo.com/G2T/rest/organizers/{organizerKey}/trainings/{trainingKey}/registrants, you receive back the following:
{
"joinUrl": "string",
"confirmationUrl": "string",
"registrantKey": "string"
}
Th response information can then be passed to the student in a custom registration email. The problem is that the dial-in information is not in these strings, nor visible on the confirmationURL web page. The only way I've been able to find it is to click on the "add to calendar" link and download an ICS file that contains the info or go into the UI manually.
Is there some sort of algorithm to determine what the dial-in number and access code should be for a session? It really should be something returned when the session is created, but all you get is the training key.- GlennD4 years agoGoTo Manager
I think you will need to email the developer support directly as we do not cover API support here in the community.
- elamaster14 years agoNew MemberHere's what support says:
I'm (deleted) from the L3 Tech Team. Currently, there is no API or method to get the dial-in phone number and access code.
You can get it downloading the .ICS file, or once the training is created you can click on the details and you will find all the info under the Audio Tab.