GoToWebinar · Schema
GoToWebinar Registrant
AttendeesCollaborationCommunicationsEventsMeetingsRegistrantsSessionsSurveysVideo ConferencingVirtual EventsWebhooksWebinars
Properties
| Name | Type | Description |
|---|---|---|
| registrantKey | string | |
| firstName | string | |
| lastName | string | |
| string | ||
| phone | string | |
| organization | string | |
| jobTitle | string | |
| industry | string | |
| comments | string | |
| registrationDate | string | |
| status | string | |
| joinUrl | string | |
| responses | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/gotowebinar/main/json-schema/gotowebinar-registrant-schema.json",
"title": "GoToWebinar Registrant",
"type": "object",
"required": ["registrantKey", "firstName", "lastName", "email"],
"properties": {
"registrantKey": { "type": "string" },
"firstName": { "type": "string" },
"lastName": { "type": "string" },
"email": { "type": "string", "format": "email" },
"phone": { "type": "string" },
"organization": { "type": "string" },
"jobTitle": { "type": "string" },
"industry": { "type": "string" },
"comments": { "type": "string" },
"registrationDate": { "type": "string", "format": "date-time" },
"status": { "type": "string", "enum": ["APPROVED", "DENIED", "WAITING"] },
"joinUrl": { "type": "string", "format": "uri" },
"responses": {
"type": "array",
"items": {
"type": "object",
"properties": {
"question": { "type": "string" },
"answer": { "type": "string" }
}
}
}
}
}