Przejdź do treści

Połączenie przychodzące na projekt oraz transfer bez konsultacji na numer zewnętrzny

klient dzwoni z numeru xxxxxxxxx4 na numer projektu xxxxxxxxx2. Informacja webhook dotyczy stworzenia nowego dialogu dla strony klienta:

Body

{
    "event_type": "user_dialog",
    "event_name": "dialog_create",
    "event_time": "2020-08-26 14:43:10",
    "direction": "OUTBOUND",
    "business_direction": "INBOUND",
    "state": "ringing",
    "dialog_type": "EXTERNAL",
    "dialog_uuid": "6709b61d-ecf7-4b95-9bee-a1e8bbebc943",
    "media": [
        "audio"
    ],
    "self_target": "48xxxxxxxxx7",
    "self_name": "48xxxxxxxxx7",
    "peer_target": "48xxxxxxxxx2",
    "peer_name": null,
    "peer_type": null,
    "peer_project_name": null,
    "peer_username": null,
    "peer_firstname": null,
    "peer_surname": null,
    "from_display_name": null,
    "from_display_target": null,
    "to_display_name": null,
    "to_display_target": null,
    "caller_contact_address": "48xxxxxxxxx7",
    "callee_contact_address": "48xxxxxxxxx2",
    "initial_link_type": "CONTACT_EXTERNAL_LINK",
    "initial_application_info": {
        "type": "EXTERNAL_INBOUND_CALL",
        "side": "CONTACT",
        "data": {
            "caller_dialog_uuid": "6709b61d-ecf7-4b95-9bee-a1e8bbebc943",
            "caller_contact_address": "48xxxxxxxxx7",
            "callee_contact_address": "48xxxxxxxxx2"
        }
    },
    "anonymous": {
        "display_name": "48xxxxxxxxx7"
    }
}POST

dialog klienta został automatycznie odebrany w aplikacji dlatego następnym zdarzeniem będzie dialog_state_update:

Body

{
    "event_type": "user_dialog",
    "event_name": "dialog_state_update",
    "event_time": "2020-08-26 14:43:10",
    "dialog_uuid": "6709b61d-ecf7-4b95-9bee-a1e8bbebc943",
    "state": "answered"
}

projekt ma ustawioną strategie dystrybucji "wybór w koło zgodnie z pozycją konsultanta w projekcie" przez co system wydzwania jednego konsultanta na raz - w takim przypadku przed wydzwonieniem tego konsultanta już jest stworzony dialog dla strony konsultanta. Odpowiedni webhook to przedstawia:

Body

{
    "event_type": "user_dialog",
    "event_name": "dialog_create",
    "event_time": "2020-08-26 14:43:11",
    "direction": "INBOUND",
    "business_direction": "INBOUND",
    "state": "alerting",
    "dialog_type": "CONSULTANT",
    "dialog_uuid": "31eae631-d0a5-4fcc-a768-5dba605b0ba9",
    "media": [
        "audio"
    ],
    "self_target": "48xxxxxxxxx5",
    "self_name": "Konsultant Paweł",
    "peer_target": "48xxxxxxxxx7",
    "peer_name": "48xxxxxxxxx7",
    "peer_type": "EXTERNAL",
    "peer_project_name": null,
    "peer_username": null,
    "peer_firstname": null,
    "peer_surname": null,
    "from_display_name": null,
    "from_display_target": null,
    "to_display_name": null,
    "to_display_target": null,
    "caller_contact_address": "48xxxxxxxxx7",
    "callee_contact_address": "48xxxxxxxxx2",
    "initial_link_type": null,
    "initial_application_info": {
        "type": "CALL_TO_USER",
        "side": "USER",
        "data": {
            "caller_dialog_uuid": "6709b61d-ecf7-4b95-9bee-a1e8bbebc943",
            "caller_number": "48xxxxxxxxx7",
            "caller_contact_address": "48xxxxxxxxx7",
            "callee_contact_address": "48xxxxxxxxx2",
            "tenant_user": {
                "id": 1,
                "username": "pkowalski"
            },
            "project": {
                "id": 1,
                "name": "Projekt Paweł"
            },
            "caller_initial_application_info": {
                "type": "EXTERNAL_INBOUND_CALL",
                "side": "CONTACT",
                "data": {
                    "caller_dialog_uuid": "6709b61d-ecf7-4b95-9bee-a1e8bbebc943",
                    "caller_contact_address": "48xxxxxxxxx7",
                    "callee_contact_address": "48xxxxxxxxx2"
                }
            }
        }
    },
    "tenant_user": {
        "id": 1,
        "username": "pkowalski",
        "firstname": "Paweł",
        "surname": "kowalski",
        "display_name": "Konsultant Paweł"
    },
    "project": {
        "id": 1,
        "name": "Projekt Paweł"
    }
}

kiedy konsultant odbierze połączenie jego dialog zmieni stan i prezentuje to webhook dialog state update.

Body

{
    "event_type": "user_dialog",
    "event_name": "dialog_state_update",
    "event_time": "2020-08-26 14:43:14",
    "dialog_uuid": "31eae631-d0a5-4fcc-a768-5dba605b0ba9",
    "state": "answered"
}

w tym momencie oba dialogi znajdują się w jednym meetingu. Od tej chwili mogą się ze sobą komunikować oraz ich stan zmienia się z answered na talking:

Body

{
    "event_type": "user_dialog",
    "event_name": "dialog_state_update",
    "event_time": "2020-08-26 14:43:16",
    "dialog_uuid": "31eae631-d0a5-4fcc-a768-5dba605b0ba9",
    "state": "talking"
}

Body

{
    "event_type": "user_dialog",
    "event_name": "dialog_state_update",
    "event_time": "2020-08-26 14:43:16",
    "dialog_uuid": "6709b61d-ecf7-4b95-9bee-a1e8bbebc943",
    "state": "talking"
}

W realizowanym scenariuszu konsultant przetransferował połączenie na numer zewnętrzny. Prezentuje to wskazany webhook

Body

{
    "event_type": "user_dialog",
    "event_name": "dialog_transfer",
    "event_time": "2020-08-26 14:43:34",
    "transfer_type": "BLIND_TRANSFER",
    "destination": "48xxxxxxxxx",
    "transfer_time": "2020-08-26 14:43:34",
    "transferor_dialog_display_name": "Konsultant Paweł",
    "transferor_dialog_display_target": "48xxxxxxxxx5",
    "transferee_dialog_display_name": "48xxxxxxxxx7",
    "transferee_dialog_display_target": "48xxxxxxxxx7",
    "transfer_to_dialog_display_name": null,
    "transfer_to_dialog_display_target": null,
    "transfer_from_dialog_display_name": null,
    "transfer_from_dialog_display_target": null,
    "transferor_dialog_type": "CONSULTANT",
    "transferee_dialog_type": "EXTERNAL",
    "transfer_to_dialog_type": null,
    "transfer_from_dialog_type": null,
    "transferor_dialog_uuid": "31eae631-d0a5-4fcc-a768-5dba605b0ba9",
    "transferee_dialog_uuid": "6709b61d-ecf7-4b95-9bee-a1e8bbebc943",
    "transfer_to_dialog_uuid": null,
    "transfer_from_dialog_uuid": null
}

następna informacja webhook dotyczy stworzenia nowego dialogu dla strony zewnętrznego numeru z parametrem state jako ringing:

Body

{
    "event_type": "user_dialog",
    "event_name": "dialog_create",
    "event_time": "2020-08-26 14:43:34",
    "direction": "INBOUND",
    "business_direction": "OUTBOUND",
    "state": "ringing",
    "dialog_type": "EXTERNAL",
    "dialog_uuid": "12c40cec-14ea-47fd-be1c-f88c770793bd",
    "media": [
        "audio"
    ],
    "self_target": "48xxxxxxxxx",
    "self_name": "48xxxxxxxxx",
    "peer_target": "48xxxxxxxxx7",
    "peer_name": "48xxxxxxxxx7",
    "peer_type": "EXTERNAL",
    "peer_project_name": null,
    "peer_username": null,
    "peer_firstname": null,
    "peer_surname": null,
    "from_display_name": "48xxxxxxxxx7",
    "from_display_target": "48xxxxxxxxx7",
    "to_display_name": "48xxxxxxxxx",
    "to_display_target": "48xxxxxxxxx",
    "caller_contact_address": "pkowalski@conpeek.com",
    "callee_contact_address": "48xxxxxxxxx",
    "initial_link_type": null,
    "initial_application_info": {
        "type": "EXTERNAL_OUTBOUND_CALL",
        "side": "CONTACT",
        "data": {
            "caller_dialog_uuid": "6709b61d-ecf7-4b95-9bee-a1e8bbebc943",
            "caller_number": "48xxxxxxxxx7",
            "caller_contact_address": "pkowalski@conpeek.com",
            "callee_contact_address": "48xxxxxxxxx",
            "caller_initial_application_info": {
                "type": "EXTERNAL_INBOUND_CALL",
                "side": "CONTACT",
                "data": {
                    "caller_dialog_uuid": "6709b61d-ecf7-4b95-9bee-a1e8bbebc943",
                    "caller_contact_address": "48xxxxxxxxx7",
                    "callee_contact_address": "48xxxxxxxxx2"
                }
            }
        }
    },
    "anonymous": {
        "display_name": "48xxxxxxxxx"
    }
}

następnie w trakcie rozpoczęcia wydzwaniania na zewnętrzny numer informacją webhook będzie aktualizacja stanu dialogu numeru zewnętrznego .

Body

{
    "event_type": "user_dialog",
    "event_name": "dialog_state_update",
    "event_time": "2020-08-26 14:43:34",
    "dialog_uuid": "12c40cec-14ea-47fd-be1c-f88c770793bd",
    "state": "alerting"
}

w tym momencie dialog konsultanta, który wykonał transfer zostaje zamknięty prezentuje to webhook dialog_close

Body

{
    "event_type": "user_dialog",
    "event_name": "dialog_close",
    "event_time": "2020-08-26 14:43:34",
    "direction": "INBOUND",
    "business_direction": "INBOUND",
    "from_display_name": "48xxxxxxxxx7",
    "from_display_target": "48xxxxxxxxx7",
    "to_display_name": "Projekt Paweł",
    "to_display_target": "48xxxxxxxxx2",
    "caller_contact_address": null,
    "callee_contact_address": null,
    "initial_application_target_id": 1,
    "initial_application_target_name": "Projekt Paweł",
    "initial_application_selection_id": null,
    "initial_application_selection_name": null,
    "initial_target_type": "PROJECT",
    "variables": {
    },
    "close_cause": "BLIND_TRANSFER",
    "dialog_uuid": "31eae631-d0a5-4fcc-a768-5dba605b0ba9",
    "initial_application_info": {
        "type": "CALL_TO_USER",
        "side": "USER",
        "data": {
            "caller_dialog_uuid": "6709b61d-ecf7-4b95-9bee-a1e8bbebc943",
            "caller_number": "48xxxxxxxxx7",
            "caller_contact_address": "48xxxxxxxxx7",
            "callee_contact_address": "48xxxxxxxxx2",
            "tenant_user": {
                "id": 1,
                "username": "pkowalski"
            },
            "project": {
                "id": 1,
                "name": "Projekt Paweł"
            },
            "caller_initial_application_info": {
                "type": "EXTERNAL_INBOUND_CALL",
                "side": "CONTACT",
                "data": {
                    "caller_dialog_uuid": "6709b61d-ecf7-4b95-9bee-a1e8bbebc943",
                    "caller_contact_address": "48xxxxxxxxx7",
                    "callee_contact_address": "48xxxxxxxxx2"
                }
            }
        }
    },
    "tenant_user": {
        "id": 1,
        "username": "pkowalski",
        "firstname": "Paweł",
        "surname": "kowalski",
        "outbound_name": "Konsultant Paweł",
        "outbound_number": "48xxxxxxxxx5"
    },
    "project": {
        "id": 1,
        "name": "Projekt Paweł"
    }
}

kiedy użytkownik odbierze transferowane połączenie jego dialog zmieni stan i prezentuje to webhook dialog state update.

Body

{
    "event_type": "user_dialog",
    "event_name": "dialog_state_update",
    "event_time": "2020-08-26 14:43:45",
    "dialog_uuid": "12c40cec-14ea-47fd-be1c-f88c770793bd",
    "state": "answered"
}

w tym momencie oba dialogi znajdują się w jednym meetingu. Od tej chwili mogą się ze sobą komunikować oraz ich stan zmienia się z answered na talking:

Body

{
    "event_type": "user_dialog",
    "event_name": "dialog_state_update",
    "event_time": "2020-08-26 14:43:45",
    "dialog_uuid": "12c40cec-14ea-47fd-be1c-f88c770793bd",
    "state": "talking"
}

Rozmowa jest prowadzona w przedstawionym scenariuszu rozmowa została zakończona przez numer zewnętrzny (dialog_uuid: 12c40cec-14ea-47fd-be1c-f88c770793bd) pojawi się następujący webhook:

rozłączenie połączenia

Body

{
    "event_type": "user_dialog",
    "event_name": "dialog_close",
    "event_time": "2020-08-26 14:43:54",
    "direction": "INBOUND",
    "business_direction": "OUTBOUND",
    "from_display_name": "48xxxxxxxxx7",
    "from_display_target": "48xxxxxxxxx7",
    "to_display_name": "48xxxxxxxxx",
    "to_display_target": "48xxxxxxxxx",
    "caller_contact_address": null,
    "callee_contact_address": null,
    "initial_application_target_id": null,
    "initial_application_target_name": null,
    "initial_application_selection_id": null,
    "initial_application_selection_name": null,
    "initial_target_type": "EXTERNAL_CALL",
    "variables": {

    },
    "close_cause": "HANGUP",
    "dialog_uuid": "12c40cec-14ea-47fd-be1c-f88c770793bd",
    "initial_application_info": {
        "type": "EXTERNAL_OUTBOUND_CALL",
        "side": "CONTACT",
        "data": {
            "caller_dialog_uuid": "6709b61d-ecf7-4b95-9bee-a1e8bbebc943",
            "caller_number": "48xxxxxxxxx7",
            "caller_contact_address": "pkowalski@conpeek.com",
            "callee_contact_address": "48xxxxxxxxx",
            "caller_initial_application_info": {
                "type": "EXTERNAL_INBOUND_CALL",
                "side": "CONTACT",
                "data": {
                    "caller_dialog_uuid": "6709b61d-ecf7-4b95-9bee-a1e8bbebc943",
                    "caller_contact_address": "48xxxxxxxxx7",
                    "callee_contact_address": "48xxxxxxxxx2"
                }
            }
        }
    },
    "anonymous": {
        "display_name": "48xxxxxxxxx",
        "presentation_number": "48xxxxxxxxx"
    }
}

Body

{
    "event_type": "user_dialog",
    "event_name": "dialog_close",
    "event_time": "2020-08-26 14:43:54",
    "direction": "OUTBOUND",
    "business_direction": "INBOUND",
    "from_display_name": "48xxxxxxxxx7",
    "from_display_target": "48xxxxxxxxx7",
    "to_display_name": "Konsultant Paweł",
    "to_display_target": "48xxxxxxxxx2",
    "caller_contact_address": null,
    "callee_contact_address": null,
    "initial_application_target_id": 1,
    "initial_application_target_name": "Projekt Paweł",
    "initial_application_selection_id": 1,
    "initial_application_selection_name": "pkowalski",
    "initial_target_type": "PROJECT",
    "variables": {

    },
    "close_cause": "DIALOG_LEFT",
    "dialog_uuid": "6709b61d-ecf7-4b95-9bee-a1e8bbebc943",
    "initial_application_info": {
        "type": "EXTERNAL_INBOUND_CALL",
        "side": "CONTACT",
        "data": {
            "caller_dialog_uuid": "6709b61d-ecf7-4b95-9bee-a1e8bbebc943",
            "caller_contact_address": "48xxxxxxxxx7",
            "callee_contact_address": "48xxxxxxxxx2"
        }
    },
    "anonymous": {
        "display_name": "48xxxxxxxxx7",
        "presentation_number": "48xxxxxxxxx7"
    }
}

na podstawie parametru close_cause wiemy, która strona zakończyła połączenie.

HANGUP - rozłączenie połączenia przez daną strone.
DIALOG_LEFT - druga strona rozłączyła się.