Disclaimer: This website requires Please enable JavaScript in your browser settings for the best experience.

Dev GuideAPI ReferenceChangelog
Dev GuideAPI ReferenceUser GuideLegal TermsDev CommunityOptimizely AcademySubmit a ticketLog In
API Reference

Event

event_modified

Experimental An event was modified.

The webhook event is triggered when following attributes of an event change:

  • title
  • description
  • is_all_day
  • start_date
  • end_date

Payload

KeyTypeDescription
event_namestringName of the event. The value is event_modified.
dataobjectData of the event.
data[event]objectData of the event associated with the webhook event.
data[event][id]stringUnique identifier of the event.
data[event][links]objectLinks related to the event.
data[event][links][self]stringURL to fetch the details of the event through the CMP Open API.

Example

{
  "event_name": "event_modified",
  "data": {
    "event": {
      "id": "6f910551b00a722e04188e",
      "links": {
        "self": "https://api.cmp.optimizely.com/v3/events/6f910551b00a722e04188e",
      }
    }
  }
}