v1

latestOpenAPI 3.1.02026-08-0624411242.2 KB
Events

Bulk publish events

API to bulk publish events and has a support for sending invite to selective users

post/v2/events/bulk-publish

Request body

Example request

{
  "publishEventList": [
    {
      "id": "56789012",
      "sendInvite": true,
      "type": "GENERIC"
    }
  ]
}

Response

Bulk publish response with event statuses

Example response

{
  "publishEventResponses": [
    {
      "id": "56789012",
      "status": "SUCCESS",
      "message": "Published successfully"
    }
  ]
}