EVENT_PUBLISHED
When a webhook is configured with this type, it will send a payload to the configured endpoint every time an event’s status is changed from DRAFT to PUBLISHED in the alumni network. The payload will consist of all the fields corresponding to that event. A typical payload from this webhook will look like the one displayed below:
{
"type": "EVENT_PUBLISHED",
"dateTime": "2023-03-28T18:17:14.799Z",
"payloadSHA256": "e409a6ba026eef938c1359af3a0a1a839d70469458079b6d88846387e29b304d",
"payload": {
"resourceGuid": "3096f9fb-f61f-4c29-98da-7b5b7c2bd1ed",
"name": "Super fun event.",
"imageCropProperties": "{\"yCordinate\":317,\"xCordinate\":0,\"width\":6088,\"height\":3425}",
"isRSVPRequired": false,
"isSponsored": false,
"eventType": "GLOBAL",
"status": "DRAFT/PUBLISHED",
"shortDescription": "Short description",
"startDate": "2023-03-31T18:13:00.000Z",
"endDate": "2023-04-08T17:13:00.000Z",
"organizerGuids": [
"cfc71cff-77d2-4cb4-8d9e-3f89f00a2f98"
],
"location": null,
"isOnlineWebinar": true,
"timeZone": "America/Mexico_City",
"webinarUrl": "https://www.google.com/",
"description": "<p>Event description</p>",
"isPublic": false,
"isFeatured": false,
"isAttendanceShown": false,
"isVolunteering": false,
"createdBy": "cfc71cff-77d2-4cb4-8d9e-3f89f00a2f98",
"updatedBy": "cfc71cff-77d2-4cb4-8d9e-3f89f00a2f98",
"registrationDeadline": null,
"featured": false,
"attendanceShown": false,
"volunteering": false,
"public": false,
"imageUrl": "Some URL"
}
}
Updated 19 days ago