GoToWebinar · Schema

GoToWebinar Webhook

AttendeesCollaborationCommunicationsEventsMeetingsRegistrantsSessionsSurveysVideo ConferencingVirtual EventsWebhooksWebinars

Properties

Name Type Description
webhookKey string
product string
eventName string
eventVersion string
callbackUrl string
webhookState string
secretKey string Secret used to compute the X-Webhook-Signature.
createTime string
View JSON Schema on GitHub

JSON Schema

gotowebinar-webhook-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/gotowebinar/main/json-schema/gotowebinar-webhook-schema.json",
  "title": "GoToWebinar Webhook",
  "type": "object",
  "required": ["webhookKey", "product", "eventName", "eventVersion", "callbackUrl", "webhookState"],
  "properties": {
    "webhookKey": { "type": "string" },
    "product": { "type": "string", "enum": ["g2w"] },
    "eventName": {
      "type": "string",
      "enum": ["registrant.added", "registrant.joined", "webinar.created", "webinar.changed"]
    },
    "eventVersion": { "type": "string", "example": "1.0.0" },
    "callbackUrl": { "type": "string", "format": "uri" },
    "webhookState": { "type": "string", "enum": ["ACTIVE", "INACTIVE"] },
    "secretKey": { "type": "string", "description": "Secret used to compute the X-Webhook-Signature." },
    "createTime": { "type": "string", "format": "date-time" }
  }
}