Since July 6, 2023, Atlassian has no longer been used for Release Notes or knowledge base articles.
* Find Release Notes here (https://support.mycontactcenter.net/app/articles/detail/a_id/23378/) and articles here (https://support.mycontactcenter.net/app/main).
* Authenticated Partners can access content here (https://support.mycontactcenter.net/cc/sso/authenticator/oauth/authorize/imcontrolpanel?redirect=main&source=mycontactcenter)


Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

This article helps define what an event means in the context of webhooks, and provides some technical detail for the structure of each event.


This article covers the general structure of webhook events and the Properties common to all events.  For event-specific parameters (e.g. Agent events, IVR events) see the relevant child pages.  


Introduction

In webhooks, an event is essentially a notification of change.  If an item within the scope of webhooks undergoes a change in status (the event), the webhooks framework notifies other applications of that change in real time.

Here are a few real-world examples to help illustrate.

  • An agent signs in.
  • The agent's status changes from Available to BusyOnCall.
  • During the call, that agent uses a call control function such as Mute.

Event Properties

Properties are common to all Events.  Every event will have the following properties:


Property NameProperty Type
Id:Alphanumeric, A global unique identifier (GUID)
CreationDateUtc:

Alphanumeric, date and time the event was created (in UTC) in the format yyyyMMddHHmmss

Category:

Numeric, identifies the type of event: 1 = Agent; 2 = IVR; 3 = Email; 4=Voice

Code:Numeric, identifies the event or action (it should be used in conjunction with Category)
Additional Fields:A list of additional fields that are specific to the event.


Next, let's look at the properties and some of the values for each.



Category

Here are the possible values for event Category.


 
    {
        Agent = 1,
/* not yet implemented
        IVR = 2,
        Email = 3,
        Chat = 4
*/
    }


Event Parameters

In addition, each event has a set of parameters associated with it.  Depending on the event's Category (see above table), the relevant parameters will change.  For instance, webhooks would send a different set of event parameters for an Agent than it would for an IVR.  

Have a look at the child pages for Agent, where you'll find event-specific parameters.


Filter by label

There are no items with the selected labels at this time.



  • No labels