Przejdź do treści

Dialog Meeting Entered

Zdarzenie informujące o tym, że Dialog dołączył do Call Meetingu

Webhook Configuration Example

"subscriptions": {
    "dialog_meeting_entered": {
        "active": true
    }
}
"subscriptions": {
    "dialog_meeting_entered": {
        "active": true,
        "filter": {
            "dialog_type": ["EXTERNAL"]
        }
    }
}

Body

{
    "event_type": "<STRING>",
    "event_name": "<STRING>",
    "event_time": "<STRING>",
    "dialog_type": "<STRING>",
    "dialog_uuid": "<STRING>",
    "meeting_uuid": "<STRING>",
}

Parameters

Parametr Rodzaj Przykład Opis
dialog_type <STRING> CONSULTANT typ dialogu
dialog_uuid <STRING> 62c4e8ae-32ea-4bfb-ab79-c819b854879f identyfikator połączenia (dialogu)
meeting_uuid <STRING> 5ad12199-1293-4aac-8cbd-ef514e28c994 identyfikator Call Meetingu
event_name <STRING> dialog_meeting_entered nazwa wydarzenia
event_time <STRING> 2018-09-01 00:00:01 czas rozpoczęcia dialogu
event_type <STRING> user_dialog typ wydarzenia

Example

{
    "event_type": "user_dialog",
    "event_name": "dialog_meeting_entered",
    "event_time": "2018-09-01 00:00:01",
    "dialog_type": "CONSULTANT",
    "dialog_uuid": "62c4e8ae-32ea-4bfb-ab79-c819b854879f",
    "meeting_uuid": "5ad12199-1293-4aac-8cbd-ef514e28c994"

}