Available Notification Events and Schemas
A list of available webhook notification events and their corresponding schemas.
BadgeExportZipFile.Created
Schema for notifications when a BadgeExportZipFile is created.
{
"type": "object",
"properties": {
"Event": {
"type": "string",
"description": "Name of the event"
},
"Timestamp": {
"type": "string",
"format": "date-time",
"description": "Timestamp of the event"
},
"BadgeExportZipFileId": {
"type": "string",
"format": "uuid",
"description": "ID of the created BadgeExportZipFile"
},
},
"required": ["Event", "Timestamp", "BadgeExportZipFileId"]
}
This schema includes the base fields present in all notification requests, along with the additional field BadgeExportZipFileId
, which specifies the ID of the created BadgeExportZipFile.
The BadgeExportZipFileId
can then be used to with the Accredit Badge Print Queue API's .
Updated about 1 year ago